Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
ashioyajotham committed Jan 11, 2025
1 parent 9f2c49d commit 367bb9e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ jobs:
pip install isort
pip install pandas-stubs
- name: Run mypy
run: mypy . --config-file mypy.ini
run: mypy --namespace-packages .
- name: Run isort
run: isort . --check-only --diff
Empty file removed __init__.py
Empty file.
7 changes: 4 additions & 3 deletions mypy.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[mypy]
files = .
namespace_packages = True
explicit_package_bases = True
mypy_path = services
python_version = 3.11
warn_return_any = True
warn_unused_configs = True
exclude = venv/
exclude = venv/,__pycache__
mypy_path = .
package_root = .

[mypy.plugins.django.*]
init_typed = True
Expand Down

0 comments on commit 367bb9e

Please sign in to comment.