fix collage method
This commit is contained in:
parent
a889b78efb
commit
c9c8bff683
1 changed files with 0 additions and 3 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue