Prints text in a given color to the console.
(self, text: str, color: str)
| 187 | self._console.print() |
| 188 | |
| 189 | def print_color(self, text: str, color: str): |
| 190 | """Prints text in a given color to the console.""" |
| 191 | self._console.print(f"[bold {color}]{text}") |
| 192 | self._console.print() |
| 193 | |
| 194 | def confirm(self, message: str, default: bool = False) -> bool: |
| 195 | """Displays a yes/no prompt to the user, returning True for confirmation.""" |
no outgoing calls
no test coverage detected