From 37c090cf64a5491602c176a521201adbcc8ad0eb Mon Sep 17 00:00:00 2001 From: Vishesh 'ironeagle' Bangotra Date: Thu, 27 Nov 2025 15:15:57 +0530 Subject: [PATCH] fixes --- match_making_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/match_making_flow.py b/match_making_flow.py index 2e6ab1c..790fe3f 100644 --- a/match_making_flow.py +++ b/match_making_flow.py @@ -54,7 +54,7 @@ async def simulate_matchmaking(num_players: int = 6): elif p not in matches[p.match_id]: matches[p.match_id].append(p) # print(f'player = {p.label} for match = {p.match_id}') - print(f'players = {len(matches[p.match_id])} for match = {p.match_id}') + # print(f'players = {len(matches[p.match_id])} for match = {p.match_id}') # stop early if all assigned if sum(len(v) for v in matches.values()) >= num_players: