(message: str)
| 171 | |
| 172 | |
| 173 | def _print_error(message: str) -> None: |
| 174 | console.print() |
| 175 | console.print( |
| 176 | Panel( |
| 177 | f"[bold red]Error:[/] {message}", |
| 178 | border_style="red", |
| 179 | padding=(0, 2), |
| 180 | ) |
| 181 | ) |
| 182 | console.print() |
| 183 | |
| 184 | |
| 185 | def _print_config( |
no outgoing calls
no test coverage detected