Skip to content

Commit

Permalink
feat: add docente to location field
Browse files Browse the repository at this point in the history
  • Loading branch information
lazylace37 committed Sep 23, 2024
1 parent 44c8c52 commit f60018c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def get_course_timetables(course: Course, latest_year: int, now: datetime):
begin=lesson.start_date,
end=lesson.end_date,
last_modified=now,
location=lesson.room,
location=f"{lesson.docente} - {lesson.room}",
)
lessons_map[e.summary].append(e)
c.events.append(e)
Expand Down

0 comments on commit f60018c

Please sign in to comment.