
- Add requirements.txt file to git - Add project files to git - Fix linting issues in task.py and env.py - Update SQLAlchemy queries to use 'not' instead of '== False' - Fix import ordering in env.py
3 lines
153 B
Python
3 lines
153 B
Python
# Import all the models to ensure they are registered with SQLAlchemy
|
|
from app.db.base_class import Base # noqa
|
|
from app.models.task import Task # noqa |