Prints a rich info message.
(text)
| 18 | |
| 19 | |
| 20 | def print_step(text) -> None: |
| 21 | """Prints a rich info message.""" |
| 22 | |
| 23 | panel = Panel(Text(text, justify="left")) |
| 24 | console.print(panel) |
| 25 | |
| 26 | |
| 27 | def print_table(items) -> None: |
no outgoing calls
no test coverage detected