From 94f7b6e4f15bbfa2a7ee2ab757da15d4d8901cad Mon Sep 17 00:00:00 2001 From: mauvehed Date: Mon, 27 May 2024 12:41:18 -0500 Subject: [PATCH] fix(mypy-linting.yml): modify mypy command to use --explicit-package-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. --- .github/workflows/mypy-linting.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mypy-linting.yml b/.github/workflows/mypy-linting.yml index da25279..8d52dbd 100644 --- a/.github/workflows/mypy-linting.yml +++ b/.github/workflows/mypy-linting.yml @@ -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