From 9d8fd834970818013994d4a8c28b0dc84f6a1a97 Mon Sep 17 00:00:00 2001 From: Slipstream Date: Wed, 11 Jun 2025 15:14:14 -0600 Subject: [PATCH] Fix: Remove unnecessary type ignore comment for latency in ping command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a9c5ed..06f3731 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ class Basics(commands.Cog): @commands.command() async def ping(self, ctx: commands.CommandContext) -> None: - await ctx.reply(f"Pong! Gateway Latency: {self.client.latency_ms} ms.") # type: ignore (latency is None during static analysis) + await ctx.reply(f"Pong! Gateway Latency: {self.client.latency_ms} ms.") token = os.getenv("DISCORD_BOT_TOKEN")