Adds type hinting back in
This commit is contained in:
parent
2ffe32afdd
commit
bf97095933
|
@ -21,8 +21,10 @@ if "TESTING" in os.environ and os.environ["TESTING"] == "true":
|
||||||
|
|
||||||
|
|
||||||
db = SQLAlchemy(app)
|
db = SQLAlchemy(app)
|
||||||
|
""":type: sqlalchemy.orm.SQLAlchemy"""
|
||||||
|
|
||||||
session = db.session
|
session = db.session
|
||||||
|
""":type: sqlalchemy.orm.Session"""
|
||||||
|
|
||||||
migrate = Migrate(app, db)
|
migrate = Migrate(app, db)
|
||||||
ma = Marshmallow(app)
|
ma = Marshmallow(app)
|
||||||
|
|
Loading…
Reference in New Issue