Browse Source
Fix typo causing a TypeError in Interaction.guild_locale
pull/7596/head
Stocker
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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 |
|
|
|
|
|
|
|