diff options
Diffstat (limited to 'discord/enums.py')
| -rw-r--r-- | discord/enums.py | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/discord/enums.py b/discord/enums.py index 4c59dbf9..177f88ca 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -26,11 +26,27 @@ DEALINGS IN THE SOFTWARE. from enum import Enum -__all__ = ['ChannelType', 'MessageType', 'VoiceRegion', 'SpeakingState', - 'VerificationLevel', 'ContentFilter', 'Status', 'DefaultAvatar', - 'RelationshipType', 'AuditLogAction', 'AuditLogActionCategory', - 'UserFlags', 'ActivityType', 'HypeSquadHouse', 'NotificationLevel', - 'PremiumType', 'UserContentFilter', 'FriendFlags', 'Theme'] +__all__ = ( + 'ChannelType', + 'MessageType', + 'VoiceRegion', + 'SpeakingState', + 'VerificationLevel', + 'ContentFilter', + 'Status', + 'DefaultAvatar', + 'RelationshipType', + 'AuditLogAction', + 'AuditLogActionCategory', + 'UserFlags', + 'ActivityType', + 'HypeSquadHouse', + 'NotificationLevel', + 'PremiumType', + 'UserContentFilter', + 'FriendFlags', + 'Theme', +) def fast_lookup(cls): # NOTE: implies hashable |