Browse Source

Fix error when app_commands.Group misses a name

pull/9582/merge
ItsWilliboy 2 years ago
committed by GitHub
parent
commit
555940352b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      discord/app_commands/commands.py

3
discord/app_commands/commands.py

@ -1548,6 +1548,9 @@ class Group:
if not self.description:
raise TypeError('groups must have a description')
if not self.name:
raise TypeError('groups must have a name')
self.parent: Optional[Group] = parent
self.module: Optional[str]
if cls.__discord_app_commands_has_module__:

Loading…
Cancel
Save