(self, text, render=True)
| 19 | self._console = RawConsole() |
| 20 | |
| 21 | def print(self, text, render=True): |
| 22 | if render: |
| 23 | self._console.print(Markdown(text)) |
| 24 | else: |
| 25 | self._console.print(text) |
| 26 | |
| 27 | def info(self, text): |
| 28 | self._console.print(f"[blue]{text}[/blue]") |
no outgoing calls
no test coverage detected