(self)
| 105 | return self.DEFAULT_SIZE |
| 106 | |
| 107 | def update(self) -> None: |
| 108 | rows, cols = self._gettermsize() |
| 109 | if not self.changed: |
| 110 | self.changed = (self.rows, self.cols) != (rows, cols) |
| 111 | self.rows, self.cols = rows, cols |
| 112 | |
| 113 | def reset_changed(self) -> None: |
| 114 | self.changed = False |
no test coverage detected