fix collage method

This commit is contained in:
yuki 2025-10-09 01:23:53 -03:00
parent a889b78efb
commit c9c8bff683

View file

@ -82,7 +82,6 @@ def setup(bot: bot.Bot):
@bot.slash_command(name="chartalbum", description="Generate an album collage.")
async def chartalbum(ctx: nerimity.Context, size: str = "3x3", timeframe: str = "7day", username: str = None):
await send_collage(
bot = bot,
ctx = ctx,
entity = "album",
size = size,
@ -94,7 +93,6 @@ def setup(bot: bot.Bot):
@bot.slash_command(name="chartartist", description="Generate an artist collage.")
async def chartartist(ctx: nerimity.Context, size: str = "3x3", timeframe: str = "7day", username: str = None):
await send_collage(
bot = bot,
ctx = ctx,
entity = "artist",
size = size,
@ -106,7 +104,6 @@ def setup(bot: bot.Bot):
@bot.slash_command(name="charttrack", description="Generate a track/song collage.")
async def charttrack(ctx: nerimity.Context, size: str = "3x3", timeframe: str = "7day", username: str = None):
await send_collage(
bot = bot,
ctx = ctx,
entity = "track",
size = size,