make all var names lower case and fix circular imports

This commit is contained in:
maxDorninger
2025-07-11 00:47:29 +02:00
parent 9173c3ad83
commit 9db9c85fc6
19 changed files with 119 additions and 110 deletions

View File

@@ -14,15 +14,15 @@ config = AllEncompassingConfig().database
db_url = (
"postgresql+psycopg"
+ "://"
+ config.USER
+ config.user
+ ":"
+ config.PASSWORD
+ config.password
+ "@"
+ config.HOST
+ config.host
+ ":"
+ str(config.PORT)
+ str(config.port)
+ "/"
+ config.DBNAME
+ config.dbname
)
engine = create_engine(db_url, echo=False)