Skip to content

Commit af58bf9

Browse files
committed
fix: simplify exclusion patterns in pyproject.toml for better clarity
1 parent 22fcae2 commit af58bf9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ test = "pytest"
4141

4242
[tool.pyright]
4343
include = ["src/pptxr", "examples", "tests"]
44-
exclude = ["src/pptxr/_pptx/**", "**/site-packages", ".venv/**"]
44+
exclude = [ "**/site-packages", ".venv/**"]
4545

4646
[tool.mypy]
47-
exclude = ["src/pptxr/_pptx/.*", "**/site-packages", ".venv/**"]
47+
exclude = ["**/site-packages", ".venv/**"]

0 commit comments

Comments
 (0)