Skip to content

Commit

Permalink
github: don't pass addtional arguments to mypy in github workflows
Browse files Browse the repository at this point in the history
We have "pyproject.toml" with configuration for mypy. We don't
need to specify command line arguments in the github action. The
configured defaults are already suitable.
  • Loading branch information
thom311 committed Nov 27, 2024
1 parent add04fb commit 54f91a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Type check with Mypy
run: |
mypy --version
mypy --strict --config-file mypy.ini .
mypy
- name: Run tests with Pytest
run: |
pytest --version
Expand Down

0 comments on commit 54f91a2

Please sign in to comment.