Fix issue with speaking state causing an error.

This commit is contained in:
Rapptz 2019-04-08 23:08:43 -04:00
parent d37839f38a
commit 67ec59caea

View File

@ -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