Browse Source

Change default Choice.name_localizations to an empty dict

pull/8340/head
Rapptz 3 years ago
parent
commit
32c5a0cec1
  1. 2
      discord/app_commands/models.py

2
discord/app_commands/models.py

@ -437,7 +437,7 @@ class Choice(Generic[ChoiceT]):
self.name: str = name
self._locale_name: Optional[locale_str] = locale
self.value: ChoiceT = value
self.name_localizations: Dict[Locale, str] = MISSING
self.name_localizations: Dict[Locale, str] = {}
@classmethod
def from_dict(cls, data: ApplicationCommandOptionChoice) -> Choice[ChoiceT]:

Loading…
Cancel
Save