Default output path in the project's subdir (cir/img). Must be called after _load_scene so the project root is set from the input.
(input_path: Path, kind: str, suffix: str)
| 59 | # ── subcommands ─────────────────────────────────────────────────────────────── |
| 60 | |
| 61 | def _default_output(input_path: Path, kind: str, suffix: str) -> Path: |
| 62 | """Default output path in the project's <kind> subdir (cir/img). |
| 63 | |
| 64 | Must be called after _load_scene so the project root is set from the input. |
| 65 | """ |
| 66 | from . import project |
| 67 | return project.subdir(kind) / input_path.with_suffix(suffix).name |
| 68 | |
| 69 | |
| 70 | def cmd_netlist(args): |
no outgoing calls
no test coverage detected