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/user.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/user.py')
| -rw-r--r-- | discord/user.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/user.py b/discord/user.py index fa361837..c14a118e 100644 --- a/discord/user.py +++ b/discord/user.py @@ -58,7 +58,7 @@ class User: Specifies if the user is a bot account. """ - __slots__ = ['name', 'id', 'discriminator', 'avatar', 'bot', '_state'] + __slots__ = ('name', 'id', 'discriminator', 'avatar', 'bot', '_state') def __init__(self, *, state, data): self._state = state |