Browse Source

Fix some lingering attribute setting issues.

pull/1785/head
Rapptz 6 years ago
parent
commit
26bb6c6ddc
  1. 5
      discord/member.py

5
discord/member.py

@ -232,6 +232,11 @@ class Member(discord.abc.Messageable, _BaseUser):
""":class:`Status`: The member's overall status. If the value is unknown, then it will be a :class:`str` instead.""" """:class:`Status`: The member's overall status. If the value is unknown, then it will be a :class:`str` instead."""
return try_enum(Status, self._client_status[None]) return try_enum(Status, self._client_status[None])
@status.setter
def status(self, value):
# internal use only
self._client_status[None] = str(value)
@property @property
def mobile_status(self): def mobile_status(self):
""":class:`Status`: The member's status on a mobile device, if applicable.""" """:class:`Status`: The member's status on a mobile device, if applicable."""

Loading…
Cancel
Save