diff options
| author | rodovia <[email protected]> | 2020-09-09 20:44:33 -0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-09-09 19:44:33 -0400 |
| commit | 15f51113c370b09598d50cd6d6ffea9dc88ab69f (patch) | |
| tree | 84b3df531e9e62467993da517a49f1511fded212 | |
| parent | Add discord.Colour classmethod dark_theme (diff) | |
| download | discord.py-15f51113c370b09598d50cd6d6ffea9dc88ab69f.tar.xz discord.py-15f51113c370b09598d50cd6d6ffea9dc88ab69f.zip | |
Fix Member.joined_at documentation
| -rw-r--r-- | discord/member.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/member.py b/discord/member.py index 17c3d4a2..1fb11e63 100644 --- a/discord/member.py +++ b/discord/member.py @@ -148,8 +148,8 @@ class Member(discord.abc.Messageable, _BaseUser): Attributes ---------- joined_at: Optional[:class:`datetime.datetime`] - A datetime object that specifies the date and time in UTC that the member joined the guild for - the first time. In certain cases, this can be ``None``. + A datetime object that specifies the date and time in UTC that the member joined the guild. + If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``. activities: Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]] The activities that the user is currently doing. guild: :class:`Guild` |