write master timetable to xlsx

This commit is contained in:
SowinskiBraeden committed 2022-11-16 17:13:08 -08:00
1 parent 70437a369e
commit 9a03826051
3 files changed
+37 -3

No files matched your search

+4
View File
@@ -555,4 +555,8 @@ def generateScheduleV3(
with open(coursesDir, "w") as outfile:
json.dump(courses, outfile, indent=2)
# Save timetable to json
with open('./output/raw/json/timetable.json', 'w') as outfile:
json.dump(running, outfile, indent=2)
return (running, None)