fix alkator_choices

This commit is contained in:
Martin Quarda 2024-05-06 13:32:45 +02:00
parent 3bedf03c16
commit d4bc4f7ce7

View File

@ -1,9 +1,9 @@
from django.db import models
ALKATOR_CHOICES =(
("1", "Alkátor"),
("2", "Alkátor light"),
("3", "Nealkátor"),
(1, "Alkátor"),
(2, "Alkátor light"),
(3, "Nealkátor"),
)
class User(models.Model):