(self, y_pos: int, x_pos: int, string: str, attr: int)
| 28 | |
| 29 | @abstractmethod |
| 30 | def addstr(self, y_pos: int, x_pos: int, string: str, attr: int) -> None: |
| 31 | pass |
| 32 | |
| 33 | @abstractmethod |
| 34 | def delch(self, y_pos: int, x_pos: int) -> None: |
no outgoing calls
no test coverage detected