From bf970959335baa7f71bd14d69eb18e5745a3ee83 Mon Sep 17 00:00:00 2001 From: Aaron Louie Date: Tue, 21 Jan 2020 15:21:33 -0500 Subject: [PATCH] Adds type hinting back in --- crc/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crc/__init__.py b/crc/__init__.py index 5dc52dc9..f7e825a3 100644 --- a/crc/__init__.py +++ b/crc/__init__.py @@ -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)