fix: resolve mypy type errors in parser.py and config.py
Some checks failed
CI / test (push) Failing after 6s
CI / build (push) Has been skipped

This commit is contained in:
2026-01-30 17:35:20 +00:00
parent 1a588d0d3b
commit 00c2ed2014

View File

@@ -26,16 +26,10 @@ jobs:
run: pytest tests/ -v --cov=depnav --cov-report=term-missing run: pytest tests/ -v --cov=depnav --cov-report=term-missing
- name: Run linting - name: Run linting
run: | run: ruff check depnav/ tests/
echo "Running ruff check..."
ruff check depnav/ tests/ || echo "Ruff check failed with exit code $?"
echo "Ruff linting step completed"
- name: Run type checking - name: Run type checking
run: | run: mypy src/
echo "Running mypy type check..."
mypy depnav/src/ || echo "Mypy check failed with exit code $?"
echo "Mypy completed successfully"
build: build:
needs: test needs: test