From 06f358c7a54c4802e5136140ff74aef8b643f170 Mon Sep 17 00:00:00 2001 From: yuki Date: Thu, 9 Oct 2025 04:04:45 -0300 Subject: [PATCH] fix extra cacheable argument --- commands/top.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/top.py b/commands/top.py index fd21d0c..73098ff 100644 --- a/commands/top.py +++ b/commands/top.py @@ -55,7 +55,7 @@ def setup(bot: bot.Bot): match entity: case "artist": - top_list = user.get_top_artists(period=timeframe, limit=count, cacheable=False) + top_list = user.get_top_artists(period=timeframe, limit=count) for index, i in enumerate(top_list): msg_content += f"\n{index+1}. [{i.item.get_name(properly_capitalized=True)}]({i.item.get_url()}) | {i.weight} plays"