Skip to content

Commit 544aa3b

Browse files
committed
chore: format code
1 parent bf2a4b7 commit 544aa3b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

app/db/init.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
def run_migrations():
1313
"""Run Alembic migrations to ensure the schema is up to date."""
1414
try:
15-
subprocess.run(["alembic", "revision", "--autogenerate", "-m", "auto"], check=True)
15+
subprocess.run(
16+
["alembic", "revision", "--autogenerate", "-m", "auto"], check=True
17+
)
1618
subprocess.run(["alembic", "upgrade", "head"], check=True)
1719
print("Generated and applied database migrations successfully.")
1820
except subprocess.CalledProcessError as e:

0 commit comments

Comments
 (0)