From 9f5123d2841fad87e65716d3659951e66eb3f7ad Mon Sep 17 00:00:00 2001 From: faul_sname Date: Thu, 9 Jun 2022 01:34:46 -0700 Subject: [PATCH] [#72] Ensure seed_db command is actually imported when calling into flask --- files/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/files/cli.py b/files/cli.py index ecba58ec9..a8461d700 100644 --- a/files/cli.py +++ b/files/cli.py @@ -1,6 +1,7 @@ from flask_migrate import Migrate from flask_sqlalchemy import SQLAlchemy from .__main__ import app +from .commands.seed_db import seed_db import files.classes db = SQLAlchemy(app)