From 3498a7f67efba71d420e7b4dfffe34b35b4abf8a Mon Sep 17 00:00:00 2001 From: ItsWilliboy <83978878+itswilliboy@users.noreply.github.com> Date: Tue, 18 Feb 2025 17:58:14 +0100 Subject: [PATCH] Don't use 3.9+ syntax --- discord/ext/commands/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/context.py b/discord/ext/commands/context.py index 0efa8da9d..7198c1206 100644 --- a/discord/ext/commands/context.py +++ b/discord/ext/commands/context.py @@ -789,7 +789,7 @@ class Context(discord.abc.Messageable, Generic[BotT]): """ if self.interaction is None: return Typing(self) - return DeferTyping[BotT](self, ephemeral=ephemeral) + return DeferTyping(self, ephemeral=ephemeral) async def defer(self, *, ephemeral: bool = False) -> None: """|coro|