diff options
| author | Rapptz <[email protected]> | 2016-10-11 00:57:41 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-01-03 09:51:50 -0500 |
| commit | e4b16851bf70e98c9f7dc15bb0ac2690073f8f09 (patch) | |
| tree | 68f713a51f7094edd851b7428c8a6f4b3ad01e48 /discord/channel.py | |
| parent | Add some basic ABCs. (diff) | |
| download | discord.py-e4b16851bf70e98c9f7dc15bb0ac2690073f8f09.tar.xz discord.py-e4b16851bf70e98c9f7dc15bb0ac2690073f8f09.zip | |
Slots use tuples instead now.
Diffstat (limited to 'discord/channel.py')
| -rw-r--r-- | discord/channel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/channel.py b/discord/channel.py index 87ce67ef..f79a2d5d 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -353,7 +353,7 @@ class PrivateChannel(Hashable): :attr:`ChannelType.group` then this is always ``None``. """ - __slots__ = ['id', 'recipients', 'type', 'owner', 'icon', 'name', 'me', '_state'] + __slots__ = ('id', 'recipients', 'type', 'owner', 'icon', 'name', 'me', '_state') def __init__(self, *, me, state, data): self._state = state |