From 4fbd6cfa908c3ebbe493d663cbc8ba2d72a63ef9 Mon Sep 17 00:00:00 2001 From: Lilac-Rose Date: Tue, 21 Oct 2025 00:17:12 +0200 Subject: [PATCH] Fixed typo in removebirthday --- birthday/birthday.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/birthday/birthday.py b/birthday/birthday.py index 10ba8f6..c4fd2e8 100644 --- a/birthday/birthday.py +++ b/birthday/birthday.py @@ -182,7 +182,7 @@ class Birthday(commands.Cog): await interaction.response.send_message(f"🎂 Birthday set to '{date}' in timezone '{timezone}'!", ephemeral=True) - @app_commands.command(name="removebirhtday", description="Remove your saved birthday.") + @app_commands.command(name="removebirthday", description="Remove your saved birthday.") async def removebirthday(self, interaction: discord.Interaction): conn = sqlite3.connect(self.db_path) c = conn.cursor()