Skip to content
Snippets Groups Projects
Commit 65d78c65 authored by LammLukas's avatar LammLukas
Browse files

Added comment at evaluator.py

parent 1e6fe997
No related branches found
No related tags found
No related merge requests found
......@@ -106,6 +106,13 @@ class Evaluator:
@staticmethod
def is_grade_note(grade):
"""Check for special grade notes of RWTHOnline"""
"""
B - Bestanden (Passed the exam)
X - Nicht erschienen (Did not attend)
NZ - Nicht zugelassen (Inadmissible for examination)
PA - Prüfung abgebrochen (Cancelled examination)
U - Ungültig/Täuschung (Invalid / Attempt to deceive)
"""
if grade == 'B' or grade == 'X' or grade == 'NZ' or grade == 'PA' or grade == 'U':
return True
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment