Automated Action 2c70565d03 Add version information to README.md and fix linting issues
- Added version 0.1.0 to the README introduction
- Added a dedicated Version Information section with details about API version, dependencies, and compatibility
- Fixed linting issues in app/db/base.py by adding noqa comments for necessary imports
2025-05-26 18:31:53 +00:00

6 lines
363 B
Python

# Import all models here for Alembic to detect them
# These imports are needed for Alembic to detect the models, even if they appear unused to linters
from app.db.base_class import Base # noqa: F401
from app.models.user import User # noqa: F401
from app.models.client import Client # noqa: F401
from app.models.invoice import Invoice, InvoiceItem # noqa: F401