(path: str)
| 236 | |
| 237 | @staticmethod |
| 238 | def load_json(path: str) -> "WorkflowIR": |
| 239 | with open(path, "r", encoding="utf-8") as f: |
| 240 | return WorkflowIR.from_dict(json.load(f)) |
| 241 | |
| 242 | |
| 243 | # ============================================================================ |
no test coverage detected