We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91d6401 commit bcdacd8Copy full SHA for bcdacd8
src/models/europython.py
@@ -237,5 +237,11 @@ def from_events(
237
)
238
day_dict[event_date]["events"].append(event)
239
240
+ # Registration session should cover all rooms
241
+ for day in day_dict.values():
242
+ for event in day["events"]:
243
+ if "Registration & Welcome" in event.title:
244
+ event.rooms = list(set(day["rooms"]))
245
+
246
day_schedule_dict = {k: DaySchedule(**v) for k, v in day_dict.items()}
247
return cls(days=day_schedule_dict)
0 commit comments