Browse Source
preferred_locale already added in another pr.
pull/153/head
Faster Speeding
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
3 deletions
-
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) |
|
|
|