reundant match case

This commit is contained in:
yuki 2025-10-08 17:07:09 -03:00
parent 71958377a5
commit ab2b21213f

View file

@ -46,7 +46,7 @@ def setup(bot: bot.Bot):
return return
match timeframe: match timeframe:
case "a" | "all" | "alltime" | "o" | "overall": timeframe = "overall" case "a" | "all" | "alltime" | "o": timeframe = "overall"
case "y" | "year" | "yearly": timeframe = "12month" case "y" | "year" | "yearly": timeframe = "12month"
case "m" | "month" | "monthly": timeframe = "1month" case "m" | "month" | "monthly": timeframe = "1month"
case "w" | "week" | "weekly": timeframe = "7day" case "w" | "week" | "weekly": timeframe = "7day"