From 51d91c2a82e01275d1c1d888319f1db14dc11791 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Thu, 17 Dec 2015 00:30:08 -0500 Subject: Most data classes now support hashing. --- discord/invite.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'discord/invite.py') 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. | +-----------+--------------------------------------+ -- cgit v1.2.3