
- 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
6 lines
363 B
Python
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 |