(path: pathlib.Path)
| 39 | |
| 40 | |
| 41 | def save_settings(path: pathlib.Path) -> None: |
| 42 | with open(str(path / "settings.json"), "w") as f: |
| 43 | json.dump(dict(version=version.VERSION), f) |
| 44 | |
| 45 | |
| 46 | def save_flows(path: pathlib.Path, flows: Iterable[flow.Flow]) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…