diff options
| author | Rapptz <[email protected]> | 2017-05-13 18:48:14 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-05-13 18:48:14 -0400 |
| commit | f73eb087c99a0ee73b9a46500225464ab866c625 (patch) | |
| tree | c08643f1aa5add45d95f934422b1fc8fd35b1b33 /discord/member.py | |
| parent | Add Colour.blurple and Colour.greyple. (diff) | |
| download | discord.py-f73eb087c99a0ee73b9a46500225464ab866c625.tar.xz discord.py-f73eb087c99a0ee73b9a46500225464ab866c625.zip | |
Use describe instead of tables for supported operations.
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 ---------- |