diff --git a/commands/search_commands.py b/commands/search_commands.py index 72084a4..a963488 100644 --- a/commands/search_commands.py +++ b/commands/search_commands.py @@ -333,8 +333,8 @@ async def stats(self, interaction: discord.Interaction, tourney_only:bool=False) if tourney_only: summary = "Round Progression:\n" - for round, count in round_count.most_common(): - summary += f"{round}: {count} games\n" + for roundN, count in round_count.most_common(): + summary += f"{roundN}: {count} games\n" asyncio.create_task(interaction.channel.send(summary) ) summary = "Point Progression:\n" for username, count in vp_count.most_common():