aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRapptz <[email protected]>2021-07-28 20:01:44 -0400
committerRapptz <[email protected]>2021-07-28 20:01:44 -0400
commit9d25bb454b731c2fc5f555ca3fd21557a9e73267 (patch)
tree7b0df5fdd927557b512e063f85513814aba11f06
parentFix PartialMessage rejecting Threads (diff)
downloaddiscord.py-9d25bb454b731c2fc5f555ca3fd21557a9e73267.tar.xz
discord.py-9d25bb454b731c2fc5f555ca3fd21557a9e73267.zip
Fix recursive inheritance in BaseUser
-rw-r--r--discord/user.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/user.py b/discord/user.py
index d0a3960a..cad78e0c 100644
--- a/discord/user.py
+++ b/discord/user.py
@@ -41,7 +41,7 @@ class _UserTag:
id: int
-class BaseUser(_BaseUser):
+class BaseUser(_UserTag):
__slots__ = ('name', 'id', 'discriminator', '_avatar', '_banner', '_accent_colour', 'bot', 'system', '_public_flags', '_state')
if TYPE_CHECKING: