Browse Source
Fix error when app_commands.Group misses a name
pull/9582/merge
ItsWilliboy
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
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__: |
|
|
|