Browse Source
[commands] Unwrap Parameter if given as default to commands.parameter
pull/9978/head
Soheab
6 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
6 additions and
0 deletions
-
discord/ext/commands/parameters.py
|
|
@ -247,6 +247,12 @@ def parameter( |
|
|
|
|
|
|
|
.. versionadded:: 2.3 |
|
|
|
""" |
|
|
|
if isinstance(default, Parameter): |
|
|
|
if displayed_default is empty: |
|
|
|
displayed_default = default._displayed_default |
|
|
|
|
|
|
|
default = default._default |
|
|
|
|
|
|
|
return Parameter( |
|
|
|
name='empty', |
|
|
|
kind=inspect.Parameter.POSITIONAL_OR_KEYWORD, |
|
|
|