diff options
| author | Rapptz <[email protected]> | 2017-04-12 20:20:35 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-04-12 20:20:35 -0400 |
| commit | 0e5bf090216e41762e04bf8aece5343ff89803d1 (patch) | |
| tree | 3c37ffb84d19e2c7206440fcb99de335c60dbf8f /discord/enums.py | |
| parent | Add Guild.explicit_content_filter. (diff) | |
| download | discord.py-0e5bf090216e41762e04bf8aece5343ff89803d1.tar.xz discord.py-0e5bf090216e41762e04bf8aece5343ff89803d1.zip | |
Export missing enums.
Diffstat (limited to 'discord/enums.py')
| -rw-r--r-- | discord/enums.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/discord/enums.py b/discord/enums.py index e91d592b..4733bf25 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -26,6 +26,9 @@ DEALINGS IN THE SOFTWARE. from enum import Enum +__all__ = ['ChannelType', 'MessageType', 'GuildRegion', 'VerificationLevel', + 'ContentFilter', 'Status', 'DefaultAvatar', 'RelationshipType' ] + class ChannelType(Enum): text = 0 private = 1 |