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 13ff4b9 commit 72fb5ddCopy full SHA for 72fb5dd
1 file changed
tests/features/conftest.py
@@ -413,11 +413,11 @@ 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
417
- curses.COLS = self.screen.width
+ curses.LINES = self.screen.height # type: ignore[misc]
+ curses.COLS = self.screen.width # type: ignore[misc]
418
419
def _curses_start_color(self):
420
- curses.COLORS = self._n_colors
+ curses.COLORS = self._n_colors # type: ignore[misc]
421
422
def _curses_can_change_color(self):
423
return self._can_change_color
0 commit comments