mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-08 10:53:10 +00:00
Change all IntEnum to Enum
A testament to how many 3.5 users there are.
This commit is contained in:
@ -158,7 +158,7 @@ class Activity(_ActivityTag):
|
||||
continue
|
||||
|
||||
ret[attr] = value
|
||||
ret['type'] = int(self.type)
|
||||
ret['type'] = self.type.value
|
||||
return ret
|
||||
|
||||
@property
|
||||
|
Reference in New Issue
Block a user