aboutsummaryrefslogtreecommitdiff
path: root/discord/enums.py
diff options
context:
space:
mode:
Diffstat (limited to 'discord/enums.py')
-rw-r--r--discord/enums.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/discord/enums.py b/discord/enums.py
index 41762bf8..88857bd1 100644
--- a/discord/enums.py
+++ b/discord/enums.py
@@ -31,10 +31,11 @@ __all__ = ['ChannelType', 'MessageType', 'VoiceRegion', 'VerificationLevel',
'AuditLogAction', 'AuditLogActionCategory', 'UserFlags', ]
class ChannelType(Enum):
- text = 0
- private = 1
- voice = 2
- group = 3
+ text = 0
+ private = 1
+ voice = 2
+ group = 3
+ category = 4
def __str__(self):
return self.name