From 4b410b071ea6bd11a73f90c3335183f19dc253ae Mon Sep 17 00:00:00 2001 From: Fingon00 Date: Sun, 29 Dec 2024 10:58:07 -0500 Subject: [PATCH] Was being silly --- commands/search_commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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():