Wipe the screen
(self)
| 495 | self.__write("\x07") |
| 496 | |
| 497 | def clear(self) -> None: |
| 498 | """Wipe the screen""" |
| 499 | self.__write(CLEAR) |
| 500 | self.posxy = 0, 0 |
| 501 | self.screen = [] |
| 502 | |
| 503 | def finish(self) -> None: |
| 504 | """Move the cursor to the end of the display and otherwise get |