From ab2b21213ff999c70ae3b0ad9f7f9401c6d35e78 Mon Sep 17 00:00:00 2001 From: yuki Date: Wed, 8 Oct 2025 17:07:09 -0300 Subject: [PATCH] reundant match case --- commands/collage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/collage.py b/commands/collage.py index fb3ab15..4a1d320 100644 --- a/commands/collage.py +++ b/commands/collage.py @@ -46,7 +46,7 @@ def setup(bot: bot.Bot): return match timeframe: - case "a" | "all" | "alltime" | "o" | "overall": timeframe = "overall" + case "a" | "all" | "alltime" | "o": timeframe = "overall" case "y" | "year" | "yearly": timeframe = "12month" case "m" | "month" | "monthly": timeframe = "1month" case "w" | "week" | "weekly": timeframe = "7day"