We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50851ad commit d259865Copy full SHA for d259865
src/scheduler/denormalise.py
@@ -279,7 +279,7 @@ def allocations(allocations_definition):
279
name=event,
280
duration=details['duration'],
281
demand=0,
282
- tags=details['tags']),
+ tags=details['tags'] + [details['day'], details['venue']]),
283
'slot': Slot(
284
venue=details['venue'],
285
starts_at=(datetime.combine(
@@ -303,7 +303,7 @@ def unbounded(unbound_definition, timetable):
303
304
305
306
- tags=[day, venue]),
+ tags=details['tags'] + [day, venue]),
307
308
venue=venue,
309
0 commit comments