mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-06-07 12:18:59 +00:00
[commands] Fix some more partially uknown typing errors
This commit is contained in:
parent
1de3562f34
commit
4d51f68864
@ -72,9 +72,9 @@ __all__ = (
|
|||||||
T = TypeVar('T')
|
T = TypeVar('T')
|
||||||
U = TypeVar('U')
|
U = TypeVar('U')
|
||||||
CogT = TypeVar('CogT', bound='Cog')
|
CogT = TypeVar('CogT', bound='Cog')
|
||||||
CommandT = TypeVar('CommandT', bound='Command')
|
CommandT = TypeVar('CommandT', bound='Command[Any, Any, Any]')
|
||||||
# CHT = TypeVar('CHT', bound='Check')
|
# CHT = TypeVar('CHT', bound='Check')
|
||||||
GroupT = TypeVar('GroupT', bound='Group')
|
GroupT = TypeVar('GroupT', bound='Group[Any, Any, Any]')
|
||||||
_NoneType = type(None)
|
_NoneType = type(None)
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user