Add __slots__ where appropriate to data classes.

This commit is contained in:
Rapptz
2015-12-19 06:18:12 -05:00
parent 4fa5b50d2b
commit f1f0e169e4
10 changed files with 33 additions and 12 deletions

View File

@ -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