diff --git a/tournaments/models/match.py b/tournaments/models/match.py index 3bc686a..5f63ad6 100644 --- a/tournaments/models/match.py +++ b/tournaments/models/match.py @@ -350,7 +350,7 @@ class Match(models.Model): class Team: def __init__(self, id, image, names, scores, weight, is_winner, walk_out): # print(f"image = {image}, names= {names}, scores ={scores}, weight={weight}, win={is_winner}") - self.id = id + self.id = str(id) self.image = image self.names = names self.scores = scores