diff options
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 e5d3810a..e6307636 100644 --- a/discord/user.py +++ b/discord/user.py @@ -466,7 +466,7 @@ class User(BaseUser, discord.abc.Messageable): Specifies if the user is a bot account. """ - __slots__ = ('__weakref__') + __slots__ = ('__weakref__',) def __repr__(self): return '<User id={0.id} name={0.name!r} discriminator={0.discriminator!r} bot={0.bot}>'.format(self) |