Skip to content

Commit

Permalink
Fix missing migration on Program.availability (#2389)
Browse files Browse the repository at this point in the history
  • Loading branch information
annagav authored Sep 11, 2024
1 parent 955de3c commit 437dbe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion courses/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@

AVAILABILITY_ANYTIME = "anytime"
AVAILABILITY_DATED = "dated"
AVAILABILITY_TYPES = {AVAILABILITY_ANYTIME, AVAILABILITY_DATED}
AVAILABILITY_TYPES = [AVAILABILITY_ANYTIME, AVAILABILITY_DATED]
AVAILABILITY_CHOICES = list(zip(AVAILABILITY_TYPES, AVAILABILITY_TYPES))

0 comments on commit 437dbe6

Please sign in to comment.