Skip to content

Commit 84352a2

Browse files
committed
Fix isort complaints
1 parent 7fd871c commit 84352a2

4 files changed

Lines changed: 5 additions & 3 deletions

File tree

alembic_osm/env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
# Add the project root directory to the Python path
99
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
1010

11-
from alembic import context
1211
from sqlalchemy import pool
1312
from sqlalchemy.engine import Connection
1413
from sqlalchemy.ext.asyncio import async_engine_from_config
1514

15+
from alembic import context
1616
from api.core.config import settings
1717
from api.core.database import Base
1818

alembic_osm/versions/9221408912dd_add_user_role_table.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
from typing import Sequence, Union
1010

1111
import sqlalchemy as sa
12-
from alembic import op
1312
from sqlalchemy import inspect, text
1413

14+
from alembic import op
15+
1516
# revision identifiers, used by Alembic.
1617
revision: str = "9221408912dd"
1718
down_revision: Union[str, None] = None

alembic_task/env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
# Add the project root directory to the Python path
99
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
1010

11-
from alembic import context
1211
from sqlalchemy import pool
1312
from sqlalchemy.engine import Connection
1413
from sqlalchemy.ext.asyncio import async_engine_from_config
1514

15+
from alembic import context
1616
from api.core.config import settings
1717
from api.core.database import Base
1818

alembic_task/versions/add6266277c7_.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"""
88

99
import sqlalchemy as sa
10+
1011
from alembic import op
1112

1213
# revision identifiers, used by Alembic.

0 commit comments

Comments
 (0)