From 0757c26149fd12e567bbbe45f9b8674eb9788a9e Mon Sep 17 00:00:00 2001 From: Corban-Lee Jones Date: Sat, 9 Nov 2024 20:57:59 +0000 Subject: [PATCH] fix missing comma --- apps/home/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/home/models.py b/apps/home/models.py index d326f7b..d4b4e76 100644 --- a/apps/home/models.py +++ b/apps/home/models.py @@ -339,8 +339,8 @@ class LeagueRule(models.Model): DID_NOT_WEIGHS = ( (0, "Threshold Points"), # TODO: waiting on description (1, "Worst Place Points"), # The points given for a DNW are equal to the points of last place - (2, "Incremental Points") # A fixed number of points added for a DWN - (2, "Absolute Points") # A fixed number of points given for a DNW + (2, "Incremental Points"), # A fixed number of points added for a DWN + (2, "Absolute Points"), # A fixed number of points given for a DNW (2, "Not Scored") # Don't count to overall points ) did_not_weigh = models.PositiveSmallIntegerField(choices=DID_NOT_WEIGHS)