diff options
Diffstat (limited to 'discord/member.py')
| -rw-r--r-- | discord/member.py | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/discord/member.py b/discord/member.py index c5d0f45c..7dc08df4 100644 --- a/discord/member.py +++ b/discord/member.py @@ -112,19 +112,23 @@ class Member(discord.abc.Messageable): This implements a lot of the functionality of :class:`User`. - Supported Operations: - - +-----------+-----------------------------------------------+ - | Operation | Description | - +===========+===============================================+ - | x == y | Checks if two members are equal. | - +-----------+-----------------------------------------------+ - | x != y | Checks if two members are not equal. | - +-----------+-----------------------------------------------+ - | hash(x) | Return the member's hash. | - +-----------+-----------------------------------------------+ - | str(x) | Returns the member's name with discriminator. | - +-----------+-----------------------------------------------+ + .. describe:: x == y + + Checks if two members are equal. + Note that this works with :class:`User` instances too. + + .. describe:: x != y + + Checks if two members are not equal. + Note that this works with :class:`User` instances too. + + .. describe:: hash(x) + + Returns the member's hash. + + .. describe:: str(x) + + Returns the member's name with the discriminator. Attributes ---------- |