diff options
Diffstat (limited to 'discord/user.py')
| -rw-r--r-- | discord/user.py | 56 |
1 files changed, 30 insertions, 26 deletions
diff --git a/discord/user.py b/discord/user.py index 2f3bfade..e7171b3c 100644 --- a/discord/user.py +++ b/discord/user.py @@ -175,19 +175,21 @@ class BaseUser: class ClientUser(BaseUser): """Represents your Discord user. - Supported Operations: - - +-----------+---------------------------------------------+ - | Operation | Description | - +===========+=============================================+ - | x == y | Checks if two users are equal. | - +-----------+---------------------------------------------+ - | x != y | Checks if two users are not equal. | - +-----------+---------------------------------------------+ - | hash(x) | Return the user's hash. | - +-----------+---------------------------------------------+ - | str(x) | Returns the user's name with discriminator. | - +-----------+---------------------------------------------+ + .. describe:: x == y + + Checks if two users are equal. + + .. describe:: x != y + + Checks if two users are not equal. + + .. describe:: hash(x) + + Return the user's hash. + + .. describe:: str(x) + + Returns the user's name with discriminator. Attributes ----------- @@ -382,19 +384,21 @@ class ClientUser(BaseUser): class User(BaseUser, discord.abc.Messageable): """Represents a Discord user. - Supported Operations: - - +-----------+---------------------------------------------+ - | Operation | Description | - +===========+=============================================+ - | x == y | Checks if two users are equal. | - +-----------+---------------------------------------------+ - | x != y | Checks if two users are not equal. | - +-----------+---------------------------------------------+ - | hash(x) | Return the user's hash. | - +-----------+---------------------------------------------+ - | str(x) | Returns the user's name with discriminator. | - +-----------+---------------------------------------------+ + .. describe:: x == y + + Checks if two users are equal. + + .. describe:: x != y + + Checks if two users are not equal. + + .. describe:: hash(x) + + Return the user's hash. + + .. describe:: str(x) + + Returns the user's name with discriminator. Attributes ----------- |