Browse Source

[commands] Change BotT to be covariant

pull/7719/head
Rapptz 3 years ago
parent
commit
02b79eb219
  1. 2
      discord/ext/commands/_types.py

2
discord/ext/commands/_types.py

@ -51,7 +51,7 @@ CoroFunc = Callable[..., Coro[Any]]
ContextT = TypeVar('ContextT', bound='Context') ContextT = TypeVar('ContextT', bound='Context')
_Bot = Union['Bot', 'AutoShardedBot'] _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]]] Check = Union[Callable[["Cog", "ContextT"], MaybeCoro[bool]], Callable[["ContextT"], MaybeCoro[bool]]]
Hook = Union[Callable[["Cog", "ContextT"], Coro[Any]], Callable[["ContextT"], Coro[Any]]] Hook = Union[Callable[["Cog", "ContextT"], Coro[Any]], Callable[["ContextT"], Coro[Any]]]

Loading…
Cancel
Save