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 4ceb34f commit e8ea65eCopy full SHA for e8ea65e
src/scheduler/cli.py
@@ -77,9 +77,10 @@ def build(
77
resources = defn.resources()
78
events, slots = events_and_slots(resources)
79
80
- logger.debug('Slots List:')
81
- for idx, slot in enumerate(slots):
82
- logger.debug(f'{idx}: {slot.starts_at} {slot.venue}')
+ slots_by_index = {
+ idx: f'{slot.starts_at} {slot.venue}'
+ for idx, slot in enumerate(slots)}
83
+ logger.debug(f'\nSlots List:\n{slots_by_index}')
84
85
kwargs = {}
86
if objective == 'consistency' or diff:
0 commit comments