format files

This commit is contained in:
maxDorninger
2025-07-15 20:05:37 +02:00
parent 0400954339
commit 831f9dc1ac
4 changed files with 32 additions and 26 deletions

View File

@@ -25,7 +25,14 @@ db_url = (
+ config.dbname
)
engine = create_engine(db_url, echo=False,pool_size=10, max_overflow=10, pool_timeout=30, pool_recycle=1800)
engine = create_engine(
db_url,
echo=False,
pool_size=10,
max_overflow=10,
pool_timeout=30,
pool_recycle=1800,
)
log.debug("initializing sqlalchemy declarative base")
Base = declarative_base()
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)