(text, task)
| 374 | |
| 375 | @Printer.register(Task) |
| 376 | def print_task(text, task): |
| 377 | outs = ', '.join(_print_task_output(o) for o in task.outputs()) |
| 378 | context = [('node', task.node), ('name', task.name), ('outputs', outs)] |
| 379 | with text.context(call('Task', context)): |
| 380 | text(task.get_step()) |
| 381 | |
| 382 | |
| 383 | @Printer.register(TaskGroup) |
nothing calls this directly
no test coverage detected
searching dependent graphs…