We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1eea592 commit 810932eCopy full SHA for 810932e
tests/features/conftest.py
@@ -413,8 +413,8 @@ def _curses_keyname(self, k):
413
return KEYS_CURSES.get(k, b'')
414
415
def _curses_update_lines_cols(self):
416
- curses.LINES = self.screen.height # type: ignore[misc]
417
- curses.COLS = self.screen.width # type: ignore[misc]
+ curses.LINES = self.screen.height
+ curses.COLS = self.screen.width
418
419
def _curses_start_color(self):
420
curses.COLORS = self._n_colors # type: ignore[misc]
0 commit comments