Merge pull request #55 from adilmohak/fixes

Fix: variable name typo
This commit is contained in:
Adil Mohak 2024-05-05 23:32:51 +03:00 committed by GitHub
commit cd6abdf2ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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"),
)