diff options
Diffstat (limited to 'discord/channel.py')
| -rw-r--r-- | discord/channel.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/discord/channel.py b/discord/channel.py index b342d9e7..814e940f 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -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 |