fix extra cacheable argument
This commit is contained in:
parent
7b214d87c9
commit
06f358c7a5
1 changed files with 1 additions and 1 deletions
|
|
@ -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"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue