(progress: IndexingProgress)
| 205 | ) |
| 206 | |
| 207 | def _on_progress(progress: IndexingProgress) -> None: |
| 208 | nonlocal last_progress_line |
| 209 | last_progress_line = f"Indexing: {_format_progress(progress)}" |
| 210 | live.update(_Spinner("dots", last_progress_line)) |
| 211 | |
| 212 | try: |
| 213 | resp = _client.index(project_root, on_progress=_on_progress, on_waiting=_on_waiting) |
nothing calls this directly
no test coverage detected