run linter and formatter

This commit is contained in:
maxDorninger
2025-06-07 13:29:48 +02:00
parent 1fab5d8056
commit 231c36efe0
16 changed files with 116 additions and 116 deletions

View File

@@ -14,17 +14,17 @@ log = logging.getLogger(__name__)
config = DbConfig()
db_url = (
"postgresql+psycopg"
+ "://"
+ config.USER
+ ":"
+ config.PASSWORD
+ "@"
+ config.HOST
+ ":"
+ str(config.PORT)
+ "/"
+ config.DBNAME
"postgresql+psycopg"
+ "://"
+ config.USER
+ ":"
+ config.PASSWORD
+ "@"
+ config.HOST
+ ":"
+ str(config.PORT)
+ "/"
+ config.DBNAME
)
engine = create_engine(db_url, echo=False)