diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index 9d253aa9c..33801732a 100644 --- a/discord/ext/commands/core.py +++ b/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