From 942b49e01a30a5a85016e8d770dc48b884763f4f Mon Sep 17 00:00:00 2001 From: wlinator Date: Thu, 28 Mar 2024 16:18:15 -0400 Subject: [PATCH] Fix typing bug --- services/Client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/Client.py b/services/Client.py index 633d4de..b002b18 100644 --- a/services/Client.py +++ b/services/Client.py @@ -28,8 +28,8 @@ class RacuBot(bridge.Bot): ctx = await self.get_context(message) - async with ctx.typing(): - await self.invoke(ctx) + #async with ctx.typing(): + await self.invoke(ctx) @staticmethod async def get_or_fetch_channel(guild, channel_id):