From e8a2eeea069a15d2cebbb2dc1498f984b1af2375 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sun, 1 May 2022 19:04:53 -0400 Subject: [PATCH] [commands] Rename Cog.app_command_group to Cog.app_command This allows it to be consistent with hybrid commands --- 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 993286bf8..4db86b58e 100644 --- a/discord/ext/commands/cog.py +++ b/discord/ext/commands/cog.py @@ -361,7 +361,7 @@ class Cog(metaclass=CogMeta): yield from command.walk_commands() @property - def app_command_group(self) -> Optional[app_commands.Group]: + def app_command(self) -> Optional[app_commands.Group]: """Optional[:class:`discord.app_commands.Group`]: Returns the associated group with this cog. This is only available if inheriting from :class:`GroupCog`.