From 4d51f6886496099e8ffb9e622e55fd6aa36cbd9a Mon Sep 17 00:00:00 2001 From: Bryan Forbes Date: Wed, 1 Mar 2023 18:37:38 -0600 Subject: [PATCH] [commands] Fix some more partially uknown typing errors --- discord/ext/commands/hybrid.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/ext/commands/hybrid.py b/discord/ext/commands/hybrid.py index d3f3c91b5..1e26f7830 100644 --- a/discord/ext/commands/hybrid.py +++ b/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: