From b97d52a3657b314dcf78f8bc8c0d05b0ad5f6d50 Mon Sep 17 00:00:00 2001 From: Slipstream Date: Wed, 11 Jun 2025 16:16:28 -0600 Subject: [PATCH] Rename typing command from 'typing_test' to 'typing' for clarity --- examples/typing_indicator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/typing_indicator.py b/examples/typing_indicator.py index 26adc03..7beda77 100644 --- a/examples/typing_indicator.py +++ b/examples/typing_indicator.py @@ -64,7 +64,7 @@ class TypingCog(commands.Cog): def __init__(self, bot_client): super().__init__(bot_client) - @commands.command(name="typing_test") + @commands.command(name="typing") async def typing_test_command(self, ctx: commands.CommandContext): """Shows a typing indicator for 5 seconds.""" await ctx.reply("Okay, I will pretend to be typing for 5 seconds.")