From 9dea6caf2084efae6e43f135ad67d8f8a5ac9141 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Fri, 11 Mar 2022 21:30:49 -0500 Subject: [PATCH] Ensure cog app commands is a list rather than a dict There was a remnant of it being a dict in the metaclass. --- 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 7a8e93711..25cbebcd4 100644 --- a/discord/ext/commands/cog.py +++ b/discord/ext/commands/cog.py @@ -177,7 +177,7 @@ class CogMeta(type): # Prefill the app commands for the Group as well.. # The type checker doesn't like runtime attribute modification and this one's # optional so it can't be cheesed. - new_cls.__discord_app_commands_group_children__ = cog_app_commands # type: ignore + new_cls.__discord_app_commands_group_children__ = new_cls.__cog_app_commands__ # type: ignore listeners_as_list = [] for listener in listeners.values():