(path: pathlib.Path, flows: Iterable[flow.Flow])
| 44 | |
| 45 | |
| 46 | def save_flows(path: pathlib.Path, flows: Iterable[flow.Flow]) -> None: |
| 47 | with open(str(path / "flows.json"), "w") as f: |
| 48 | json.dump([flow_to_json(f) for f in flows], f) |
| 49 | |
| 50 | |
| 51 | def save_flows_content(path: pathlib.Path, flows: Iterable[flow.Flow]) -> None: |
no test coverage detected
searching dependent graphs…