()
| 2896 | |
| 2897 | |
| 2898 | def default_trace_path() -> Path: |
| 2899 | candidate = Path("fastgrind.fgb") |
| 2900 | if candidate.is_file(): |
| 2901 | return candidate |
| 2902 | raise FileNotFoundError("File not found: fastgrind.fgb") |
| 2903 | |
| 2904 | |
| 2905 | def resolve_input_path(raw: str | None) -> Path: |
no outgoing calls
no test coverage detected