fix missing comma

This commit is contained in:
Corban-Lee Jones 2024-11-09 20:57:59 +00:00
parent dcbb27ae2e
commit 0757c26149

View File

@ -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)