Skip to content

Commit

Permalink
Hot fixing office hours schedule (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisJordan authored Apr 1, 2024
1 parent 782f898 commit ee8077b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions backend/services/coworking/policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def office_hours(self, date: datetime):
"SN135": [],
"SN137": [],
"SN139": [],
"SN141": [time(hour=9), time(hour=16)], # Stotts 301
"SN141": [(time(hour=9), time(hour=16))], # Stotts 301
"SN144": [],
"SN146": [],
"SN147": [(time(hour=15), time(hour=18))], # Sridhar
Expand All @@ -86,17 +86,17 @@ def office_hours(self, date: datetime):
"SN135": [],
"SN137": [],
"SN139": [],
"SN141": [time(hour=9), time(hour=16)], # Stotts 301
"SN141": [(time(hour=9), time(hour=16))], # Stotts 301
"SN144": [],
"SN146": [],
"SN147": [(time(hour=15), time(hour=18))], # Sridhar
}
elif day == WEDNESDAY:
return {
"SN135": [],
"SN137": [time(hour=3), time(hour=4)], # Johnathan Leong
"SN137": [(time(hour=15), time(hour=16))], # Johnathan Leong
"SN139": [],
"SN141": [time(hour=9), time(hour=16)], # Stotts 301
"SN141": [(time(hour=9), time(hour=16))], # Stotts 301
"SN144": [],
"SN146": [],
"SN147": [(time(hour=15), time(hour=18))], # Sridhar
Expand All @@ -106,7 +106,7 @@ def office_hours(self, date: datetime):
"SN135": [],
"SN137": [],
"SN139": [],
"SN141": [time(hour=9), time(hour=16)], # Stotts 301
"SN141": [(time(hour=9), time(hour=16))], # Stotts 301
"SN144": [],
"SN146": [],
"SN147": [(time(hour=16), time(hour=18))], # Sridhar
Expand All @@ -116,7 +116,7 @@ def office_hours(self, date: datetime):
"SN135": [],
"SN137": [],
"SN139": [],
"SN141": [time(hour=9), time(hour=16)], # Stotts 301
"SN141": [(time(hour=9), time(hour=16))], # Stotts 301
"SN144": [],
"SN146": [],
"SN147": [],
Expand Down

0 comments on commit ee8077b

Please sign in to comment.