From f1a5b0c44dde58ab7fb07a3bef6aab82144ca53c Mon Sep 17 00:00:00 2001 From: Laurent Date: Tue, 25 Mar 2025 09:23:53 +0100 Subject: [PATCH] fix group stage issue --- tournaments/models/group_stage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tournaments/models/group_stage.py b/tournaments/models/group_stage.py index 02dbbf3..a786de0 100644 --- a/tournaments/models/group_stage.py +++ b/tournaments/models/group_stage.py @@ -166,7 +166,7 @@ class GroupStage(SideStoreModel): class LiveGroupStage: def __init__(self, id, title, step, index): - self.id = id + self.id = str(id) self.title = title self.teams = [] self.start = None