Skip to content

Commit 4b596d4

Browse files
committed
Allow mypy to use incremental cache
1 parent 71bdd40 commit 4b596d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
# All linters and formatters are run with `uv run --active`
3636
LINTERS: list[tuple[str, ...]] = [
3737
("flake8", "--show-source", LINT_PATH, TESTS_PATH),
38-
("mypy", "--pretty", "--no-incremental", "--package", MODULE_NAME),
39-
("mypy", "--pretty", "--no-incremental", TESTS_PATH),
38+
("mypy", "--pretty", "--package", MODULE_NAME),
39+
("mypy", "--pretty", TESTS_PATH),
4040
]
4141
FORMATTERS: list[tuple[str, ...]] = [
4242
(

0 commit comments

Comments
 (0)