From 02b79eb2199efa8e84ac585649060944513c12b9 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Fri, 18 Mar 2022 01:12:50 -0400 Subject: [PATCH] [commands] Change BotT to be covariant --- discord/ext/commands/_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/_types.py b/discord/ext/commands/_types.py index 2907d8f69..9f15a0cf7 100644 --- a/discord/ext/commands/_types.py +++ b/discord/ext/commands/_types.py @@ -51,7 +51,7 @@ CoroFunc = Callable[..., Coro[Any]] ContextT = TypeVar('ContextT', bound='Context') _Bot = Union['Bot', 'AutoShardedBot'] -BotT = TypeVar('BotT', bound=_Bot) +BotT = TypeVar('BotT', bound=_Bot, covariant=True) Check = Union[Callable[["Cog", "ContextT"], MaybeCoro[bool]], Callable[["ContextT"], MaybeCoro[bool]]] Hook = Union[Callable[["Cog", "ContextT"], Coro[Any]], Callable[["ContextT"], Coro[Any]]]