From 742630f1441d4b0b12a5fd9a751ab5cd1b39a5c6 Mon Sep 17 00:00:00 2001 From: AAA3A <89632044+AAA3A-AAA3A@users.noreply.github.com> Date: Sat, 11 Feb 2023 01:33:27 +0100 Subject: [PATCH] [commands] Fix error involving hybrid groups in Cog --- discord/ext/commands/cog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/cog.py b/discord/ext/commands/cog.py index d02b4e84f..84430f9e4 100644 --- a/discord/ext/commands/cog.py +++ b/discord/ext/commands/cog.py @@ -338,7 +338,7 @@ class Cog(metaclass=CogMeta): app_command: Optional[Union[app_commands.Group, app_commands.Command[Self, ..., Any]]] = getattr( command, 'app_command', None ) - if app_command is not None: + if app_command: group_parent = self.__cog_app_commands_group__ app_command = app_command._copy_with(parent=group_parent, binding=self) # The type checker does not see the app_command attribute even though it exists