From 689fda2142672ea7950cf9307adf6905ef9d7c5a Mon Sep 17 00:00:00 2001 From: dolfies Date: Wed, 27 Apr 2022 20:38:35 -0400 Subject: [PATCH] Remove unused import --- discord/calls.py | 2 +- discord/profile.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/discord/calls.py b/discord/calls.py index edc0ee2c9..47bac76c5 100644 --- a/discord/calls.py +++ b/discord/calls.py @@ -440,7 +440,7 @@ class GroupCall(PrivateCall): The type of this attribute has changed to :class:`str`. """ - __slots__ = tuple() + __slots__ = () if TYPE_CHECKING: channel: GroupChannel diff --git a/discord/profile.py b/discord/profile.py index 370f1c8e4..462ca5490 100644 --- a/discord/profile.py +++ b/discord/profile.py @@ -27,7 +27,6 @@ from __future__ import annotations from typing import List, Optional, TYPE_CHECKING from .connections import PartialConnection -from .flags import PublicUserFlags from .member import Member from .object import Object from .permissions import Permissions