From e75c248a9a41e14639dc4c032cea47867c886ec0 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 9 Jul 2019 22:49:34 -0400 Subject: [PATCH] Properly populate __slots__ for derived user types. Fixes #2265 --- discord/user.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/discord/user.py b/discord/user.py index 0b5fcb0d0..b567913f8 100644 --- a/discord/user.py +++ b/discord/user.py @@ -294,7 +294,8 @@ class ClientUser(BaseUser): premium_type: :class:`PremiumType` Specifies the type of premium a user has (e.g. Nitro or Nitro Classic). Could be None if the user is not premium. """ - __slots__ = ('email', 'locale', '_flags', 'verified', 'mfa_enabled', + __slots__ = BaseUser.__slots__ + \ + ('email', 'locale', '_flags', 'verified', 'mfa_enabled', 'premium', 'premium_type', '_relationships', '__weakref__') def __init__(self, *, state, data): @@ -650,7 +651,7 @@ class User(BaseUser, discord.abc.Messageable): Specifies if the user is a bot account. """ - __slots__ = ('__weakref__',) + __slots__ = BaseUser.__slots__ + ('__weakref__',) def __repr__(self): return ''.format(self)