Skip to content
This repository has been archived by the owner on Dec 26, 2022. It is now read-only.

Commit

Permalink
馃悰 fix GuildFeatures not existing (#352)
Browse files Browse the repository at this point in the history
* 馃悰 fix GuildFeatures not existing

* 馃摑 added str typehints to docs

Signed-off-by: Lunarmagpie <Bambolambo0@gmail.com>
  • Loading branch information
Lunarmagpie committed Jan 5, 2022
1 parent 5715af2 commit cc92e0e
Showing 1 changed file with 43 additions and 43 deletions.
86 changes: 43 additions & 43 deletions pincer/objects/guild/features.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,68 +11,68 @@ class GuildFeature(Enum):
Attributes
----------
ANIMATED_ICON:
ANIMATED_ICON : str
Guild can have an animated icon.
BANNER:
BANNER : str
Guild can have a banner.
COMMERCE:
COMMERCE : str
Guild can have commerce.
COMMUNITY:
COMMUNITY : str
Guild is a community.
DISCOVERABLE:
DISCOVERABLE : str
Guild can be discovered.
FEATURABLE:
FEATURABLE : str
Guild can be featureurable.Guild can have an invite splash.
INVITE_SPLASH:
INVITE_SPLASH : str
Guild can be featureurable.
MEMBER_VERIFICATION_GATE_ENABLED:
MEMBER_VERIFICATION_GATE_ENABLED : str
Guild has member verification enabled.
NEWS:
NEWS : str
Guild has a news channel.
PARTNERED:
PARTNERED : str
Guild is a partner.
PREVIEW_ENABLED:
PREVIEW_ENABLED : str
Guild has preview enabled.
VANITY_URL:
VANITY_URL : str
Guild has a vanity url.
VERIFIED:
VERIFIED : str
Guild is verified.
VIP_REGIONS:
VIP_REGIONS : str
Guild can have VIP regions.
WELCOME_SCREEN_ENABLED:
WELCOME_SCREEN_ENABLED : str
Guild has welcome screen enabled.
TICKETED_EVENTS_ENABLED:
TICKETED_EVENTS_ENABLED : str
Guild has ticketed events enabled.
MONETIZATION_ENABLED:
MONETIZATION_ENABLED : str
Guild has monetization enabled.
MORE_STICKERS:
MORE_STICKERS : str
Guild can have more stickers.
THREE_DAY_THREAD_ARCHIVE:
THREE_DAY_THREAD_ARCHIVE : str
Guild can have three day archive time for threads.
SEVEN_DAY_THREAD_ARCHIVE:
SEVEN_DAY_THREAD_ARCHIVE : str
Guild can have seven day archive time for threads.
PRIVATE_THREADS:
PRIVATE_THREADS : str
Guild can have private threads.
"""
ANIMATED_ICON = auto()
BANNER = auto()
COMMERCE = auto()
COMMUNITY = auto()
DISCOVERABLE = auto()
FEATURABLE = auto()
INVITE_SPLASH = auto()
MEMBER_VERIFICATION_GATE_ENABLED = auto()
NEWS = auto()
PARTNERED = auto()
PREVIEW_ENABLED = auto()
VANITY_URL = auto()
VERIFIED = auto()
VIP_REGIONS = auto()
WELCOME_SCREEN_ENABLED = auto()
TICKETED_EVENTS_ENABLED = auto()
MONETIZATION_ENABLED = auto()
MORE_STICKERS = auto()
THREE_DAY_THREAD_ARCHIVE = auto()
SEVEN_DAY_THREAD_ARCHIVE = auto()
PRIVATE_THREADS = auto()
NEW_THREAD_PERMISSIONS = auto()
ANIMATED_ICON = "ANIMATED_ICON"
BANNER = "BANNER"
COMMERCE = "COMMERCE"
COMMUNITY = "COMMUNITY"
DISCOVERABLE = "DISCOVERABLE"
FEATURABLE = "FEATURABLE"
INVITE_SPLASH = "INVITE_SPLASH"
MEMBER_VERIFICATION_GATE_ENABLED = "MEMBER_VERIFICATION_GATE_ENABLED"
NEWS = "NEWS"
PARTNERED = "PARTNERED"
PREVIEW_ENABLED = "PREVIEW_ENABLED"
VANITY_URL = "VANITY_URL"
VERIFIED = "VERIFIED"
VIP_REGIONS = "VIP_REGIONS"
WELCOME_SCREEN_ENABLED = "WELCOME_SCREEN_ENABLED"
TICKETED_EVENTS_ENABLED = "TICKETED_EVENTS_ENABLED"
MONETIZATION_ENABLED = "MONETIZATION_ENABLED"
MORE_STICKERS = "MORE_STICKERS"
THREE_DAY_THREAD_ARCHIVE = "THREE_DAY_THREAD_ARCHIVE"
SEVEN_DAY_THREAD_ARCHIVE = "SEVEN_DAY_THREAD_ARCHIVE"
PRIVATE_THREADS = "PRIVATE_THREADS"
NEW_THREAD_PERMISSIONS = "NEW_THREAD_PERMISSIONS"

0 comments on commit cc92e0e

Please sign in to comment.