Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwang44 committed Mar 9, 2023
1 parent ed4a8e5 commit 3be480d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/choices.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
('EXPERIENCED', _('Experienced')),
)

PERFER_TIME_CHOICES = (
PREFER_TIME_CHOICES = (
('DAY_ONE_MORNING', _('Day 1, September 2nd, 2023 Morning')),
('DAY_ONE_AFTERNOON', _('Day 1, September 2nd, 2023 Afternoon')),
('DAY_TWO_MORNING', _('Day 2, September 3rd, 2023 Morning')),
Expand Down
4 changes: 2 additions & 2 deletions src/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
CATEGORY_CHOICES,
LANGUAGE_CHOICES,
PYTHON_LVL_CHOICES,
PERFER_TIME_CHOICES,
PREFER_TIME_CHOICES,
RECORDING_POLICY_CHOICES,
LIVING_IN_TAIWAN_CHOICES,
LIVE_STREAM_POLICY_CHOICES,
Expand Down Expand Up @@ -173,7 +173,7 @@ class EventInfo(models.Model):
prefer_time = models.CharField(
verbose_name=_('prefer event time'),
max_length=32,
choices=PERFER_TIME_CHOICES,
choices=PREFER_TIME_CHOICES,
)

living_in_taiwan = models.BooleanField(
Expand Down

0 comments on commit 3be480d

Please sign in to comment.