[commands] Fix some more partially uknown typing errors

This commit is contained in:
Bryan Forbes 2023-03-01 18:37:38 -06:00 committed by GitHub
parent 1de3562f34
commit 4d51f68864
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: