Skip to content

Commit

Permalink
fix(mypy-linting.yml): modify mypy command to use --explicit-package-…
Browse files Browse the repository at this point in the history
…bases flag

The change was made to ensure that mypy checks are more explicit and thorough. The --explicit-package-bases flag makes mypy consider all directories as packages, which helps in catching more potential issues during the linting process.
  • Loading branch information
mauvehed committed May 27, 2024
1 parent 02e9089 commit 94f7b6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/mypy-linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ jobs:
poetry install
- name: Analyzing the code with mypy
run: |
poetry run mypy trackerstatus tests
poetry run mypy --explicit-package-bases app tests

0 comments on commit 94f7b6e

Please sign in to comment.