Browse Source

Fix issue with speaking state causing an error.

pull/2055/head
Rapptz 6 years ago
parent
commit
67ec59caea
  1. 3
      discord/enums.py

3
discord/enums.py

@ -87,6 +87,9 @@ class SpeakingState(Enum):
def __str__(self):
return self.name
def __int__(self):
return self.value
class VerificationLevel(Enum):
none = 0
low = 1

Loading…
Cancel
Save