Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
🎨 update: code format for lint
  • Loading branch information
ezeparziale committed Sep 7, 2025
commit cb497ad9d280a8e17b372915514894e0c3514777
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
Loading