diff --git a/discord/ext/commands/converter.py b/discord/ext/commands/converter.py index 3221b4e23..93ffd1a6c 100644 --- a/discord/ext/commands/converter.py +++ b/discord/ext/commands/converter.py @@ -461,8 +461,6 @@ class GuildChannelConverter(IDConverter[discord.abc.GuildChannel]): @staticmethod def _resolve_thread(ctx: Context[BotT], argument: str, attribute: str, type: Type[TT]) -> TT: - bot = ctx.bot - match = IDConverter._get_id_match(argument) or re.match(r'<#([0-9]{15,20})>$', argument) result = None guild = ctx.guild diff --git a/discord/http.py b/discord/http.py index 048338543..ffd2c3771 100644 --- a/discord/http.py +++ b/discord/http.py @@ -66,10 +66,7 @@ if TYPE_CHECKING: from .embeds import Embed from .message import Attachment from .flags import MessageFlags - from .enums import ( - AuditLogAction, - InteractionResponseType, - ) + from .enums import AuditLogAction from .types import ( appinfo, @@ -86,7 +83,6 @@ if TYPE_CHECKING: role, user, webhook, - channel, widget, threads, scheduled_event, diff --git a/discord/interactions.py b/discord/interactions.py index 737c5c742..a72aff301 100644 --- a/discord/interactions.py +++ b/discord/interactions.py @@ -69,7 +69,7 @@ if TYPE_CHECKING: from .ui.view import View from .app_commands.models import Choice, ChoiceT from .ui.modal import Modal - from .channel import VoiceChannel, StageChannel, TextChannel, CategoryChannel, PartialMessageable + from .channel import VoiceChannel, StageChannel, TextChannel, CategoryChannel from .threads import Thread from .app_commands.commands import Command, ContextMenu diff --git a/discord/member.py b/discord/member.py index 911365ac5..a8d1ca486 100644 --- a/discord/member.py +++ b/discord/member.py @@ -28,7 +28,7 @@ import datetime import inspect import itertools from operator import attrgetter -from typing import Any, Callable, Collection, Coroutine, Dict, List, Literal, Optional, TYPE_CHECKING, Tuple, Union, Type +from typing import Any, Callable, Collection, Coroutine, Dict, List, Optional, TYPE_CHECKING, Tuple, Union, Type import discord.abc @@ -51,7 +51,6 @@ __all__ = ( if TYPE_CHECKING: from typing_extensions import Self - from .asset import Asset from .channel import DMChannel, VoiceChannel, StageChannel from .flags import PublicUserFlags from .guild import Guild diff --git a/discord/message.py b/discord/message.py index 16a2d7034..6e88d4132 100644 --- a/discord/message.py +++ b/discord/message.py @@ -40,7 +40,6 @@ from typing import ( Callable, Tuple, ClassVar, - Optional, Type, overload, ) @@ -85,7 +84,7 @@ if TYPE_CHECKING: from .types.embed import Embed as EmbedPayload from .types.gateway import MessageReactionRemoveEvent, MessageUpdateEvent from .abc import Snowflake - from .abc import GuildChannel, PartialMessageableChannel, MessageableChannel + from .abc import GuildChannel, MessageableChannel from .components import Component from .state import ConnectionState from .channel import TextChannel diff --git a/discord/shard.py b/discord/shard.py index 5592004d8..7115c6f98 100644 --- a/discord/shard.py +++ b/discord/shard.py @@ -48,7 +48,6 @@ from typing import TYPE_CHECKING, Any, Callable, Tuple, Type, Optional, List, Di if TYPE_CHECKING: from .gateway import DiscordWebSocket from .activity import BaseActivity - from .enums import Status __all__ = ( 'AutoShardedClient', diff --git a/discord/types/guild.py b/discord/types/guild.py index a338756ec..02cf99adb 100644 --- a/discord/types/guild.py +++ b/discord/types/guild.py @@ -35,7 +35,6 @@ from .role import Role from .member import Member from .emoji import Emoji from .user import User -from .sticker import GuildSticker from .threads import Thread