fix missing comma
This commit is contained in:
parent
dcbb27ae2e
commit
0757c26149
@ -339,8 +339,8 @@ class LeagueRule(models.Model):
|
|||||||
DID_NOT_WEIGHS = (
|
DID_NOT_WEIGHS = (
|
||||||
(0, "Threshold Points"), # TODO: waiting on description
|
(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
|
(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, "Incremental Points"), # A fixed number of points added for a DWN
|
||||||
(2, "Absolute Points") # A fixed number of points given for a DNW
|
(2, "Absolute Points"), # A fixed number of points given for a DNW
|
||||||
(2, "Not Scored") # Don't count to overall points
|
(2, "Not Scored") # Don't count to overall points
|
||||||
)
|
)
|
||||||
did_not_weigh = models.PositiveSmallIntegerField(choices=DID_NOT_WEIGHS)
|
did_not_weigh = models.PositiveSmallIntegerField(choices=DID_NOT_WEIGHS)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user