(self)
| 430 | self.console.print(self.screen, end="") |
| 431 | |
| 432 | def __enter__(self) -> "ScreenContext": |
| 433 | self._changed = self.console.set_alt_screen(True) |
| 434 | if self._changed and self.hide_cursor: |
| 435 | self.console.show_cursor(False) |
| 436 | return self |
| 437 | |
| 438 | def __exit__( |
| 439 | self, |
nothing calls this directly
no test coverage detected