fix extra cacheable argument

This commit is contained in:
yuki 2025-10-09 04:04:45 -03:00
parent 7b214d87c9
commit 06f358c7a5

View file

@ -55,7 +55,7 @@ def setup(bot: bot.Bot):
match entity: match entity:
case "artist": 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): 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" msg_content += f"\n{index+1}. [{i.item.get_name(properly_capitalized=True)}]({i.item.get_url()}) | {i.weight} plays"