[#72] Ensure seed_db command is actually imported when calling into flask

This commit is contained in:
faul_sname 2022-06-09 01:34:46 -07:00
parent 0a27f8849c
commit 9f5123d284

View file

@ -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)