Skip to content

Commit

Permalink
Remove extra comma
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-ni committed Dec 2, 2021
1 parent 77dea6f commit 20164dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/pokemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ async def release(self, ctx, args: commands.Greedy[converters.PokemonConverter])
else:
message = (
f"Are you sure you want to release the following pokémon for {len(mons)*2:,} pc?\n\n"
+ "\n".join(f"{x:spl} ({x.idx})" for x in mons),
+ "\n".join(f"{x:spl} ({x.idx})" for x in mons)
)

result = await ctx.confirm(message)
Expand Down

0 comments on commit 20164dc

Please sign in to comment.