Add instance check to PermissionOvewrite.__eq__

This commit is contained in:
Rapptz 2020-01-19 02:41:50 -05:00
parent a1d41f16d8
commit 650beee53d

View File

@ -482,7 +482,7 @@ class PermissionOverwrite:
setattr(self, key, value) setattr(self, key, value)
def __eq__(self, other): def __eq__(self, other):
return self._values == other._values return isinstance(other, PermissionOverwrite) and self._values == other._values
def _set(self, key, value): def _set(self, key, value):
if value not in (True, None, False): if value not in (True, None, False):