Wipe the screen
(self)
| 443 | self.__write("\x07") |
| 444 | |
| 445 | def clear(self) -> None: |
| 446 | """Wipe the screen""" |
| 447 | self.__write(CLEAR) |
| 448 | self.posxy = 0, 0 |
| 449 | self.screen = [""] |
| 450 | |
| 451 | def finish(self) -> None: |
| 452 | """Move the cursor to the end of the display and otherwise get |