Fix: variable name typo

This commit is contained in:
papi 2024-05-05 23:30:38 +03:00
parent 8ab751e2ae
commit 3d8baebf74

View File

@ -20,12 +20,12 @@ YEARS = (
)
# LEVEL_COURSE = "Level course"
BACHLOAR_DEGREE = "Bachloar"
BACHELOR_DEGREE = "Bachelor"
MASTER_DEGREE = "Master"
LEVEL = (
# (LEVEL_COURSE, "Level course"),
(BACHLOAR_DEGREE, "Bachloar Degree"),
(BACHELOR_DEGREE, "Bachelor Degree"),
(MASTER_DEGREE, "Master Degree"),
)