(self, x: int)
| 748 | self.__write_code(self._cuu, -dy) |
| 749 | |
| 750 | def __move_x_hpa(self, x: int) -> None: |
| 751 | if x != self.posxy[0]: |
| 752 | self.__write_code(self._hpa, x) |
| 753 | |
| 754 | def __move_x_cub1_cuf1(self, x: int) -> None: |
| 755 | assert self._cuf1 is not None |
nothing calls this directly
no test coverage detected