Browse Source
[commands] Fix some more partially uknown typing errors
pull/9282/head
Bryan Forbes
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
discord/ext/commands/hybrid.py
|
|
@ -72,9 +72,9 @@ __all__ = ( |
|
|
|
T = TypeVar('T') |
|
|
|
U = TypeVar('U') |
|
|
|
CogT = TypeVar('CogT', bound='Cog') |
|
|
|
CommandT = TypeVar('CommandT', bound='Command') |
|
|
|
CommandT = TypeVar('CommandT', bound='Command[Any, Any, Any]') |
|
|
|
# CHT = TypeVar('CHT', bound='Check') |
|
|
|
GroupT = TypeVar('GroupT', bound='Group') |
|
|
|
GroupT = TypeVar('GroupT', bound='Group[Any, Any, Any]') |
|
|
|
_NoneType = type(None) |
|
|
|
|
|
|
|
if TYPE_CHECKING: |
|
|
|