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,