From 241b7054bb2ecb8bd20710ec667a200e64cd0cfc Mon Sep 17 00:00:00 2001 From: SowinskiBraeden Date: Mon, 5 Dec 2022 08:54:32 -0800 Subject: [PATCH] update comment --- app/util/students.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/util/students.py b/app/util/students.py index 94375d9..7977765 100644 --- a/app/util/students.py +++ b/app/util/students.py @@ -15,7 +15,7 @@ class Student: Classes: int RemainingAlts: list[Request] StudentIndex: int - Gradelevel: int = None # set to None since don't pass gradelevel + Gradelevel: int = None # set to None since we don't pass gradelevel # This function converst Student.Requests to an array of dictionaries from an array of Requests def RequestsToDict(self) -> None: self.Requests = [asdict(r) for r in self.Requests]