Browse Source
[commands] Change Command.extras to match typing in app commands
pull/8191/head
Bryan Forbes
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
discord/ext/commands/core.py
|
|
@ -385,7 +385,7 @@ class Command(_BaseCommand, Generic[CogT, P, T]): |
|
|
|
self.usage: Optional[str] = kwargs.get('usage') |
|
|
|
self.rest_is_raw: bool = kwargs.get('rest_is_raw', False) |
|
|
|
self.aliases: Union[List[str], Tuple[str]] = kwargs.get('aliases', []) |
|
|
|
self.extras: Dict[str, Any] = kwargs.get('extras', {}) |
|
|
|
self.extras: Dict[Any, Any] = kwargs.get('extras', {}) |
|
|
|
|
|
|
|
if not isinstance(self.aliases, (list, tuple)): |
|
|
|
raise TypeError("Aliases of a command must be a list or a tuple of strings.") |
|
|
|