Skip to content

Commit 14ee318

Browse files
committed
fix: reorder imports
1 parent b772dbb commit 14ee318

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

app/database/alembic/env.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
from app.database.models import Base
2-
# from app.database.models import * # This helps alembic autogeneration
3-
41
from logging.config import fileConfig
2+
import os
53

4+
from alembic import context
65
from sqlalchemy import create_engine
76

8-
from alembic import context
9-
import os
107
from app import config as app_config
8+
from app.database.models import Base
119

1210

1311
SQLALCHEMY_DATABASE_URL = os.getenv(

0 commit comments

Comments
 (0)