Skip to content

Commit c297503

Browse files
committed
feat: exclude examples/ from mypy check, and standardize all exclusions
1 parent 0cf70b2 commit c297503

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ lint:
1717

1818
.PHONY: mypy
1919
mypy:
20-
uv run mypy . --exclude site
20+
uv run mypy .
2121

2222
.PHONY: tests
2323
tests:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ strict = true
117117
disallow_incomplete_defs = false
118118
disallow_untyped_defs = false
119119
disallow_untyped_calls = false
120+
exclude = ["examples/", "site/"]
120121

121122
[[tool.mypy.overrides]]
122123
module = "sounddevice.*"

0 commit comments

Comments
 (0)