(ctx: FileToolContext)
| 25 | |
| 26 | |
| 27 | def _get_locks(ctx: FileToolContext) -> Tuple[Path, Path]: |
| 28 | search_lock = ctx.resolve_under_workspace(SEARCH_LOCK_FILE) |
| 29 | report_lock = ctx.resolve_under_workspace(REPORT_LOCK_FILE) |
| 30 | return search_lock, report_lock |
| 31 | |
| 32 | |
| 33 | def _load_search_results(file_path: Path) -> Dict[str, Any]: |
no test coverage detected