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: