From 9af724511793482bac866ddaa610565730c662b2 Mon Sep 17 00:00:00 2001 From: Faster Speeding Date: Sat, 21 Sep 2019 16:55:34 +0000 Subject: [PATCH] preferred_locale already added in another pr. --- disco/types/guild.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/disco/types/guild.py b/disco/types/guild.py index 0ec80ab..7d74396 100644 --- a/disco/types/guild.py +++ b/disco/types/guild.py @@ -317,8 +317,6 @@ class Guild(SlottedModel, Permissible): Guild's premium tier. premium_subscription_count: int The amount of users using their nitro boost on this guild. - preferred_locale : str - The preferred locale of a guild. """ id = Field(snowflake) owner_id = Field(snowflake) @@ -345,7 +343,6 @@ class Guild(SlottedModel, Permissible): member_count = Field(int) premium_tier = Field(int) premium_subscription_count = Field(int, default=0) - preferred_locale = Field(text) vanity_url_code = Field(text) max_presences = Field(int) max_members = Field(int)