Fix mypy type errors in reporting module

This commit is contained in:
2026-01-29 18:06:13 +00:00
parent c016320b71
commit 6830b3158c
8 changed files with 576 additions and 3 deletions

50
.dockerignore Normal file
View File

@@ -0,0 +1,50 @@
# Git
.git
.gitignore
.gitea
# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
*.egg-info
.eggs
dist
build
.pytest_cache
.mypy_cache
.ruff_cache
.coverage
htmlcov
# Tests
tests/
pytest.ini
# Documentation
docs/
*.md
!README.md
# Development
.vscode
.idea
*.swp
*.swo
*~
# Environment
.env
.env.*
venv
.venv
# Data (will be created fresh in container)
data/
*.db
*.parquet
# CI/CD
.gitea/