Add __slots__ where appropriate to data classes.
This commit is contained in:
@ -225,6 +225,8 @@ class PrivateChannel(Hashable):
|
||||
``True`` if the channel is a private channel (i.e. PM). ``True`` in this case.
|
||||
"""
|
||||
|
||||
__slots__ = ['user', 'id', 'is_private']
|
||||
|
||||
def __init__(self, user, id, **kwargs):
|
||||
self.user = user
|
||||
self.id = id
|
||||
|
Reference in New Issue
Block a user