Move cursor to 'home' position.
(cls)
| 72 | |
| 73 | @classmethod |
| 74 | def home(cls) -> "Control": |
| 75 | """Move cursor to 'home' position.""" |
| 76 | return cls(ControlType.HOME) |
| 77 | |
| 78 | @classmethod |
| 79 | def move(cls, x: int = 0, y: int = 0) -> "Control": |
no outgoing calls
no test coverage detected