reworded fastapi code

This commit is contained in:
2026-01-20 10:22:04 -05:00
parent cf4635922e
commit 258f918794
8 changed files with 339 additions and 106 deletions

View File

@@ -61,7 +61,6 @@ def get_connection_info() -> tuple[str, str, str, str, str | None]:
f"{host=}\n"
f"{port=}\n"
f"{username=}\n"
f"password{'***' if password else None}\n"
)
raise ValueError(error)
return cast("tuple[str, str, str, str, str | None]", (database, host, port, username, password))