Skip to content

Commit

Permalink
🎨 update: code format for lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ezeparziale committed Dec 15, 2022
1 parent 3cf251f commit feea75f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs_src/advanced/migrations/tutorial004.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from logging.config import fileConfig # isort:skip

from main import Hero # isort:skip
from main import Hero # noqa: F401, isort:skip
from sqlmodel import SQLModel # isort:skip

from sqlalchemy import engine_from_config # isort:skip
Expand Down
2 changes: 1 addition & 1 deletion docs_src/advanced/migrations/tutorial005.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""init_db
Revision ID: 34abfb7ac266
Revises:
Revises:
Create Date:
"""
Expand Down
2 changes: 1 addition & 1 deletion docs_src/advanced/migrations/tutorial007.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""
from alembic import op # isort:skip
import sqlalchemy as sa # isort:skip
import sqlmodel # isort:skip
import sqlmodel # noqa: F401, isort:skip


# revision identifiers, used by Alembic.
Expand Down

0 comments on commit feea75f

Please sign in to comment.