diff --git a/app/models.py b/app/models.py index e7eec732..5f39ba3e 100644 --- a/app/models.py +++ b/app/models.py @@ -5,7 +5,10 @@ class CityEnum(models.TextChoices): - LA_PLATA = 'La Plata', + """"" + Enumeracion de la Ciudad + """"" + LA_PLATA = 'La Plata', BERISSO = 'Berisso', ENSENADA = 'Ensenada', @@ -613,4 +616,4 @@ def update_medicine(self, medicine_data): self.save() return True, None - main +