Browse Source

Fix typo causing a TypeError in Interaction.guild_locale

pull/7596/head
Stocker 3 years ago
committed by GitHub
parent
commit
acbd8ca5f6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/interactions.py

2
discord/interactions.py

@ -152,7 +152,7 @@ class Interaction:
self.locale: Locale = try_enum(Locale, data.get('locale', 'en-US'))
self.guild_locale: Optional[Locale]
try:
self.guild_locale = try_enum(Locale, data.get['guild_locale'])
self.guild_locale = try_enum(Locale, data['guild_locale'])
except KeyError:
self.guild_locale = None

Loading…
Cancel
Save