From de693d16c1cc9d0761f50327391b34732fd0481b Mon Sep 17 00:00:00 2001 From: Paillat Date: Tue, 29 Oct 2024 17:18:52 +0100 Subject: [PATCH] :adhesive_bandage: Fix imported `ApplicationContext` under `TYPE_CHECKING` --- discord/commands/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/commands/options.py b/discord/commands/options.py index 9208372f23..4b35a080d9 100644 --- a/discord/commands/options.py +++ b/discord/commands/options.py @@ -39,13 +39,13 @@ Thread, VoiceChannel, ) +from ..commands import ApplicationContext from ..enums import ChannelType from ..enums import Enum as DiscordEnum from ..enums import SlashCommandOptionType from ..utils import MISSING, basic_autocomplete if TYPE_CHECKING: - from ..commands import ApplicationContext from ..ext.commands import Converter from ..member import Member from ..message import Attachment