Browse Source
[commands] Check if any base in a Cog is a subclass of Group
pull/7696/head
z03h
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
discord/ext/commands/cog.py
|
|
@ -121,7 +121,8 @@ class CogMeta(type): |
|
|
|
name, bases, attrs = args |
|
|
|
attrs['__cog_name__'] = kwargs.get('name', name) |
|
|
|
attrs['__cog_settings__'] = kwargs.pop('command_attrs', {}) |
|
|
|
attrs['__cog_is_app_commands_group__'] = is_parent = app_commands.Group in bases |
|
|
|
is_parent = any(issubclass(base, app_commands.Group) for base in bases) |
|
|
|
attrs['__cog_is_app_commands_group__'] = is_parent |
|
|
|
|
|
|
|
description = kwargs.get('description', None) |
|
|
|
if description is None: |
|
|
|