(candidates: list[Path], raw_path: str, source_case_dir: Path)
| 336 | |
| 337 | |
| 338 | def _append_potcar_path_candidates(candidates: list[Path], raw_path: str, source_case_dir: Path) -> None: |
| 339 | path = Path(raw_path) |
| 340 | candidates.append(path) |
| 341 | if not path.is_absolute(): |
| 342 | candidates.append((source_case_dir / path).resolve()) |
| 343 | |
| 344 | |
| 345 | def _extract_tag_hint(raw_tag: str) -> str: |
no outgoing calls
no test coverage detected