Linted and formatted all files

This commit is contained in:
2025-05-28 21:52:39 -05:00
parent e46f13930d
commit 02913c7385
31 changed files with 1264 additions and 766 deletions

View File

@@ -1,12 +1,10 @@
import os
from logging.config import fileConfig
from sqlalchemy import engine_from_config
from sqlalchemy import pool
from sqlalchemy import engine_from_config, pool
from alembic import context
from app.utils.database import get_db_credentials
from app.models.db import Base
from app.utils.database import get_db_credentials
# this is the Alembic Config object, which provides
# access to the values within the .ini file in use.
@@ -22,7 +20,7 @@ target_metadata = Base.metadata
# Override sqlalchemy.url with dynamic credentials
if not context.is_offline_mode():
config.set_main_option('sqlalchemy.url', get_db_credentials())
config.set_main_option("sqlalchemy.url", get_db_credentials())
# other values from the config, defined by the needs of env.py,
# can be acquired:
@@ -68,9 +66,7 @@ def run_migrations_online() -> None:
)
with connectable.connect() as connection:
context.configure(
connection=connection, target_metadata=target_metadata
)
context.configure(connection=connection, target_metadata=target_metadata)
with context.begin_transaction():
context.run_migrations()