mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-08 10:53:10 +00:00
Most data classes now support hashing.
This commit is contained in:
@ -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. |
|
||||
+-----------+--------------------------------------+
|
||||
|
||||
|
Reference in New Issue
Block a user