(in_data: dict)
| 18 | |
| 19 | |
| 20 | def _result_path_from_input(in_data: dict) -> Path | None: |
| 21 | raw = str(in_data.get("result_path") or "").strip() |
| 22 | return Path(raw) if raw else None |
| 23 | |
| 24 | |
| 25 | def _run_paper2figure(in_data: dict) -> dict: |
no test coverage detected