aboutsummaryrefslogtreecommitdiff
path: root/discord/invite.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2017-05-13 18:48:14 -0400
committerRapptz <[email protected]>2017-05-13 18:48:14 -0400
commitf73eb087c99a0ee73b9a46500225464ab866c625 (patch)
treec08643f1aa5add45d95f934422b1fc8fd35b1b33 /discord/invite.py
parentAdd Colour.blurple and Colour.greyple. (diff)
downloaddiscord.py-f73eb087c99a0ee73b9a46500225464ab866c625.tar.xz
discord.py-f73eb087c99a0ee73b9a46500225464ab866c625.zip
Use describe instead of tables for supported operations.
Diffstat (limited to 'discord/invite.py')
-rw-r--r--discord/invite.py28
1 files changed, 15 insertions, 13 deletions
diff --git a/discord/invite.py b/discord/invite.py
index 44aa90f6..2139500c 100644
--- a/discord/invite.py
+++ b/discord/invite.py
@@ -36,19 +36,21 @@ class Invite(Hashable):
Depending on the way this object was created, some of the attributes can
have a value of ``None``.
- Supported Operations:
-
- +-----------+--------------------------------------+
- | Operation | Description |
- +===========+======================================+
- | x == y | Checks if two invites are equal. |
- +-----------+--------------------------------------+
- | x != y | Checks if two invites are not equal. |
- +-----------+--------------------------------------+
- | hash(x) | Return the invite's hash. |
- +-----------+--------------------------------------+
- | str(x) | Returns the invite's URL. |
- +-----------+--------------------------------------+
+ .. describe:: x == y
+
+ Checks if two invites are equal.
+
+ .. describe:: x != y
+
+ Checks if two invites are not equal.
+
+ .. describe:: hash(x)
+
+ Returns the invite hash.
+
+ .. describe:: str(x)
+
+ Returns the invite URL.
Attributes
-----------