Skip to content

Commit

Permalink
🚨(api) fix migrations black formatting
Browse files Browse the repository at this point in the history
Black evolves.
  • Loading branch information
jmaupetit committed Oct 9, 2024
1 parent 39bf508 commit 71d23ff
Showing 1 changed file with 3 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ def upgrade() -> None:
"city",
sa.Column("population", sa.Integer(), nullable=True),
)
op.add_column(
"city", sa.Column("area", sa.Float(), nullable=True)
)
op.add_column("city", sa.Column("area", sa.Float(), nullable=True))
op.add_column(
"department",
sa.Column("population", sa.Integer(), nullable=True),
Expand All @@ -39,16 +37,12 @@ def upgrade() -> None:
"epci",
sa.Column("population", sa.Integer(), nullable=True),
)
op.add_column(
"epci", sa.Column("area", sa.Float(), nullable=True)
)
op.add_column("epci", sa.Column("area", sa.Float(), nullable=True))
op.add_column(
"region",
sa.Column("population", sa.Integer(), nullable=True),
)
op.add_column(
"region", sa.Column("area", sa.Float(), nullable=True)
)
op.add_column("region", sa.Column("area", sa.Float(), nullable=True))
# ### end Alembic commands ###


Expand Down

0 comments on commit 71d23ff

Please sign in to comment.