Skip to content

Commit

Permalink
Exclude /build from mypy type checking
Browse files Browse the repository at this point in the history
  • Loading branch information
khaeru committed Nov 20, 2024
1 parent af35a48 commit 31418b3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,10 @@ omit = [
]

[tool.mypy]
exclude = ["doc/"]
exclude = [
"build/",
"doc/",
]
# TODO Remove this once it has become default with mypy 2.0:
local_partial_types = true

Expand Down

0 comments on commit 31418b3

Please sign in to comment.