Browse Source

[commands] Unwrap transformers when considering them as converters

pull/7912/head
Rapptz 3 years ago
parent
commit
405c445093
  1. 3
      discord/ext/commands/core.py

3
discord/ext/commands/core.py

@ -161,6 +161,9 @@ def get_signature_parameters(
if annotation is Greedy:
raise TypeError('Unparameterized Greedy[...] is disallowed in signature.')
if isinstance(annotation, discord.app_commands.transformers._TransformMetadata):
annotation = annotation.metadata
params[name] = parameter.replace(annotation=annotation)
return params

Loading…
Cancel
Save