gabcares commited on
Commit
09fee05
·
verified ·
1 Parent(s): b1bfa34

Update utils/instructor.py

Browse files
Files changed (1) hide show
  1. utils/instructor.py +3 -3
utils/instructor.py CHANGED
@@ -1,4 +1,4 @@
1
- from typing_extensions import Self, Optional, Union
2
  from pydantic import model_validator
3
  from sqlmodel import Field, Relationship
4
 
@@ -12,13 +12,13 @@ class Instructor(Person, table=True):
12
  Represents an Instructor, inheriting from Person, with an additional department field.
13
 
14
  Attributes:
15
- department (Union[str, Department): The instructor's department.
16
 
17
  Methods:
18
  set_id() -> Self: An SQLmodel validator that automatically sets the instructor's ID with a "INS" prefix through handle_id method in the Person class.
19
  """
20
 
21
- department: Union[str, Department] = Field(default=Department.COMPUTER_SCIENCE)
22
 
23
  course_id: Optional[str] = Field(
24
  default=None, foreign_key="course.id")
 
1
+ from typing_extensions import Self, Optional
2
  from pydantic import model_validator
3
  from sqlmodel import Field, Relationship
4
 
 
12
  Represents an Instructor, inheriting from Person, with an additional department field.
13
 
14
  Attributes:
15
+ department (str): The instructor's department.
16
 
17
  Methods:
18
  set_id() -> Self: An SQLmodel validator that automatically sets the instructor's ID with a "INS" prefix through handle_id method in the Person class.
19
  """
20
 
21
+ department: str = Field(default=Department.COMPUTER_SCIENCE)
22
 
23
  course_id: Optional[str] = Field(
24
  default=None, foreign_key="course.id")