Skip to content

Commit

Permalink
fix mypy exclude typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tianweidut committed Oct 11, 2022
1 parent d351d90 commit 36a3a61
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions client/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
PY_CHANGED_FILES = $(shell git diff --name-only --relative -- '*.py')


.POHNY: check
check:
python3 setup.py check
Expand Down
10 changes: 5 additions & 5 deletions client/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ exclude = '''

[tool.mypy]
exclude = [
"venv",
"build",
"dist",
"__pycache__",
"tests",
"venv/",
"build/",
"dist/",
"__pycache__/",
"tests/",
"dummy/setup.py",
]
show_column_numbers = true
Expand Down

0 comments on commit 36a3a61

Please sign in to comment.