aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/member.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/member.py b/discord/member.py
index 50da6a82..711bc76e 100644
--- a/discord/member.py
+++ b/discord/member.py
@@ -88,7 +88,7 @@ def flatten_user(cls):
# if it's a slotted attribute or a property, redirect it
# slotted members are implemented as member_descriptors in Type.__dict__
- if hasattr(value, '__get__'):
+ if not hasattr(value, '__annotations__'):
def getter(self, x=attr):
return getattr(self._user, x)
setattr(cls, attr, property(getter, doc='Equivalent to :attr:`User.%s`' % attr))