Skip to content

Commit 8acff2c

Browse files
authored
Merge pull request #386 from asottile/pre-commit-ci-update-config
[pre-commit.ci] pre-commit autoupdate
2 parents 7bfd2a7 + 810932e commit 8acff2c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ repos:
3636
hooks:
3737
- id: flake8
3838
- repo: https://github.com/pre-commit/mirrors-mypy
39-
rev: v1.18.2
39+
rev: v1.19.0
4040
hooks:
4141
- id: mypy

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)