Resolve the path to ``.progress_cache``.
(project_dir: Path)
| 146 | |
| 147 | |
| 148 | def get_progress_cache_path(project_dir: Path) -> Path: |
| 149 | """Resolve the path to ``.progress_cache``.""" |
| 150 | return _resolve_path(project_dir, ".progress_cache") |
| 151 | |
| 152 | |
| 153 | def get_prompts_dir(project_dir: Path) -> Path: |
no test coverage detected