Browse Source

Fix overwrites not being saved due to enum changes

pull/145/head
Justin 6 years ago
committed by GitHub
parent
commit
d40eaa864f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      disco/types/channel.py

2
disco/types/channel.py

@ -83,7 +83,7 @@ class PermissionOverwrite(ChannelSubType):
self.id,
self.allow.value or 0,
self.deny.value or 0,
self.type.name,
self.type,
**kwargs)
return self

Loading…
Cancel
Save