From 7f1502dbdf1b740ee237f807d3f0bb585dfed4ce Mon Sep 17 00:00:00 2001 From: Razmig Sarkissian Date: Wed, 4 Jun 2025 10:13:38 +0200 Subject: [PATCH] remove some print statement --- tournaments/models/tournament.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index 71a6066..b4cbfde 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -710,7 +710,7 @@ class Tournament(BaseModel): else: current_round = self.round_to_show() if current_round: - print(f'current_round = {current_round.index} / parent = {current_round.parent}') + #print(f'current_round = {current_round.index} / parent = {current_round.parent}') all_upper_matches_are_over = current_round.all_matches_are_over() if all_upper_matches_are_over is False: matches.extend(current_round.get_matches_recursive(True)) @@ -737,7 +737,7 @@ class Tournament(BaseModel): previous_previous_matches = [m for m in previous_previous_matches if m.end_date is None] matches.extend(previous_previous_matches) else: - print('group_stages') + #print('group_stages') group_stages = [gs.live_group_stages() for gs in self.last_group_stage_step()] else: first_round = self.first_round()