Skip to content

Commit 810932e

Browse files
committed
remove unused ignores
1 parent 1eea592 commit 810932e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/features/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,8 +413,8 @@ def _curses_keyname(self, k):
413413
return KEYS_CURSES.get(k, b'')
414414

415415
def _curses_update_lines_cols(self):
416-
curses.LINES = self.screen.height # type: ignore[misc]
417-
curses.COLS = self.screen.width # type: ignore[misc]
416+
curses.LINES = self.screen.height
417+
curses.COLS = self.screen.width
418418

419419
def _curses_start_color(self):
420420
curses.COLORS = self._n_colors # type: ignore[misc]

0 commit comments

Comments
 (0)