Set max line length to 88.

This commit is contained in:
Fabio Caccamo
2023-02-13 15:52:13 +01:00
parent 81ab67953a
commit 191d82a5c2
5 changed files with 11 additions and 5 deletions
+3 -1
View File
@@ -83,7 +83,9 @@ if github_workflow:
database_config["postgres_replica"]["HOST"] = "127.0.0.1"
database_config["postgres_replica"]["PORT"] = "5432"
replica_engine = "postgres_replica" if database_engine == "postgres" else database_engine
replica_engine = (
"postgres_replica" if database_engine == "postgres" else database_engine
)
DATABASES = {
"default": database_config.get(database_engine),