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"