Change all IntEnum to Enum

A testament to how many 3.5 users there are.
This commit is contained in:
Rapptz
2019-04-08 17:35:09 -04:00
parent 1da624a8b5
commit 0ddc6867e9
2 changed files with 8 additions and 8 deletions

View File

@ -158,7 +158,7 @@ class Activity(_ActivityTag):
continue
ret[attr] = value
ret['type'] = int(self.type)
ret['type'] = self.type.value
return ret
@property