From 0e386ec2ccfa6b131ab0ebd782d1ccd50bf08470 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Mon, 8 Aug 2022 21:14:52 -0400 Subject: [PATCH] Fix parameter descriptions being serialised as locale_str --- discord/app_commands/transformers.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/discord/app_commands/transformers.py b/discord/app_commands/transformers.py index b299111f5..56c76f970 100644 --- a/discord/app_commands/transformers.py +++ b/discord/app_commands/transformers.py @@ -137,9 +137,6 @@ class CommandParameter: if translation is not None: description_localizations[locale.value] = translation - if isinstance(self.description, locale_str): - base['description'] = self.description.message - if self.choices: base['choices'] = [await choice.get_translated_payload(translator) for choice in self.choices] @@ -155,7 +152,7 @@ class CommandParameter: base = { 'type': self.type.value, 'name': self.display_name, - 'description': self.description, + 'description': str(self.description), 'required': self.required, }