Browse Source

[commands] Unwrap Parameter if given as default to commands.parameter

pull/9978/head
Soheab 6 months ago
committed by GitHub
parent
commit
c5e74068f0
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      discord/ext/commands/parameters.py

6
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,

Loading…
Cancel
Save