Adds type hinting back in

This commit is contained in:
Aaron Louie 2020-01-21 15:21:33 -05:00
parent 2ffe32afdd
commit bf97095933
1 changed files with 2 additions and 0 deletions

View File

@ -21,8 +21,10 @@ if "TESTING" in os.environ and os.environ["TESTING"] == "true":
db = SQLAlchemy(app)
""":type: sqlalchemy.orm.SQLAlchemy"""
session = db.session
""":type: sqlalchemy.orm.Session"""
migrate = Migrate(app, db)
ma = Marshmallow(app)