Skip to content

Commit

Permalink
fix: get all Attendance Records time_out is optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Will413028 committed Jan 31, 2024
1 parent 17ac134 commit d03a1a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class AttendanceRecord(DateTimeBase):
id: int
attendance_date: datetime
time_in: datetime
time_out: datetime
time_out: Optional[datetime] = None
attendance_type: str
user_id: int
user: User
Expand Down

0 comments on commit d03a1a3

Please sign in to comment.