Show or hide the cursor.
(cls, show: bool)
| 148 | |
| 149 | @classmethod |
| 150 | def show_cursor(cls, show: bool) -> "Control": |
| 151 | """Show or hide the cursor.""" |
| 152 | return cls(ControlType.SHOW_CURSOR if show else ControlType.HIDE_CURSOR) |
| 153 | |
| 154 | @classmethod |
| 155 | def alt_screen(cls, enable: bool) -> "Control": |
no outgoing calls
no test coverage detected