Static convenience method
(nodes: list[dict], links: list[list])
| 144 | |
| 145 | @staticmethod |
| 146 | def process(nodes: list[dict], links: list[list]): |
| 147 | """Static convenience method""" |
| 148 | layout = WorkflowLayout(nodes, links) |
| 149 | layout.apply_layout() |
no test coverage detected