Skip to content

Commit 944e8e0

Browse files
committed
Fix Namespace packages with mypy
1 parent bccb984 commit 944e8e0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/code_quality_checks_3_10.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ jobs:
2929
- name: Check format with black
3030
run: poetry run black --check pycommons/ tests/
3131
- name: Check type hinting with mypy
32-
run: mypy --namespace-packages -p pycommons.lang --strict --config-file=mypy.ini
32+
run: poetry run mypy --namespace-packages -p pycommons.lang --strict --config-file=mypy.ini
3333

.github/workflows/code_quality_checks_3_8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ jobs:
3131
- name: Check format with black
3232
run: poetry run black --check pycommons/ tests/
3333
- name: Check type hinting with mypy
34-
run: mypy --namespace-packages -p pycommons.lang --strict --config-file=mypy.ini
34+
run: poetry run mypy --namespace-packages -p pycommons.lang --strict --config-file=mypy.ini
3535

.github/workflows/code_quality_checks_3_9.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ jobs:
2929
- name: Check format with black
3030
run: poetry run black --check pycommons/ tests/
3131
- name: Check type hinting with mypy
32-
run: mypy --namespace-packages -p pycommons.lang --strict --config-file=mypy.ini
32+
run: poetry run mypy --namespace-packages -p pycommons.lang --strict --config-file=mypy.ini
3333

0 commit comments

Comments
 (0)