From c9c8bff683f62cffec29a01d40ea0eb77aa87677 Mon Sep 17 00:00:00 2001 From: yuki Date: Thu, 9 Oct 2025 01:23:53 -0300 Subject: [PATCH] fix collage method --- commands/collage.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/commands/collage.py b/commands/collage.py index a61b25d..6c03ef5 100644 --- a/commands/collage.py +++ b/commands/collage.py @@ -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,