diff options
Diffstat (limited to 'discord/invite.py')
| -rw-r--r-- | discord/invite.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/discord/invite.py b/discord/invite.py index bc1ae3fb..ad6b2673 100644 --- a/discord/invite.py +++ b/discord/invite.py @@ -26,9 +26,9 @@ DEALINGS IN THE SOFTWARE. from .user import User from .utils import parse_time -from .mixins import EqualityComparable +from .mixins import Hashable -class Invite(EqualityComparable): +class Invite(Hashable): """Represents a Discord :class:`Server` or :class:`Channel` invite. Depending on the way this object was created, some of the attributes can @@ -43,6 +43,8 @@ class Invite(EqualityComparable): +-----------+--------------------------------------+ | x != y | Checks if two invites are not equal. | +-----------+--------------------------------------+ + | hash(x) | Return the invite's hash. | + +-----------+--------------------------------------+ | str(x) | Returns the invite's URL. | +-----------+--------------------------------------+ |