|
@ -88,7 +88,7 @@ def flatten_user(cls): |
|
|
|
|
|
|
|
|
# if it's a slotted attribute or a property, redirect it |
|
|
# if it's a slotted attribute or a property, redirect it |
|
|
# slotted members are implemented as member_descriptors in Type.__dict__ |
|
|
# slotted members are implemented as member_descriptors in Type.__dict__ |
|
|
if hasattr(value, '__get__'): |
|
|
if not hasattr(value, '__annotations__'): |
|
|
def getter(self, x=attr): |
|
|
def getter(self, x=attr): |
|
|
return getattr(self._user, x) |
|
|
return getattr(self._user, x) |
|
|
setattr(cls, attr, property(getter, doc='Equivalent to :attr:`User.%s`' % attr)) |
|
|
setattr(cls, attr, property(getter, doc='Equivalent to :attr:`User.%s`' % attr)) |
|
|