This commit is contained in:
Son 2021-10-12 14:52:57 +02:00
parent 4d7cd09847
commit a8b3955fe6
1 changed files with 1 additions and 4 deletions

View File

@ -1,5 +1,3 @@
from app.db import Session
from app.db import Session
from time import sleep
import flask_migrate
@ -7,8 +5,8 @@ from IPython import embed
from sqlalchemy_utils import create_database, database_exists, drop_database
from app.config import DB_URI
from app.db import Session
from app.email_utils import send_email, render
from app.extensions import db
from app.log import LOG
from app.models import (
User,
@ -20,7 +18,6 @@ from job_runner import (
onboarding_mailbox,
onboarding_send_from_alias,
)
from server import create_app
def create_db():