From ce33cf56bec6b1f3d4fde454f35fcdf657df6965 Mon Sep 17 00:00:00 2001 From: Laurent Date: Wed, 21 Aug 2024 16:31:56 +0200 Subject: [PATCH] Fix compilation --- tournaments/models/tournament.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index 3b12130..ba76ed3 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -665,7 +665,7 @@ class Tournament(models.Model): def has_all_group_stages_started(self): for group_stage in self.groupstage_set.all(): - if group_stage.has_at_least_one_started_match() == False + if group_stage.has_at_least_one_started_match() == False: return False return True