Update/refresh index for a path (alias for reindex).
(path: str, context: Optional[str] = None)
| 548 | |
| 549 | |
| 550 | def update_helper(path: str, context: Optional[str] = None): |
| 551 | """Update/refresh index for a path (alias for reindex).""" |
| 552 | console.print("[cyan]Updating repository index...[/cyan]") |
| 553 | reindex_helper(path, context) |
| 554 | |
| 555 | |
| 556 | def clean_helper(context: Optional[str] = None): |
nothing calls this directly
no test coverage detected