Print the project root directory.
(project_root: str)
| 147 | |
| 148 | |
| 149 | def print_project_header(project_root: str) -> None: |
| 150 | """Print the project root directory.""" |
| 151 | _typer.echo(f"Project: {format_path_for_display(project_root)}") |
| 152 | |
| 153 | |
| 154 | def print_index_stats(status: ProjectStatusResponse) -> None: |
no test coverage detected