Skip to content

Commit

Permalink
Format with ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
davegaeddert committed Jan 12, 2024
1 parent afbac4c commit 6cb60d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bolt-db/bolt/db/default_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
environ["DATABASE_URL"],
# Enable persistent connections by default
conn_max_age=int(environ.get("DATABASE_CONN_MAX_AGE", 600)),
conn_health_checks=environ.get("DATABASE_CONN_HEALTH_CHECKS", "true").lower() in [
conn_health_checks=environ.get("DATABASE_CONN_HEALTH_CHECKS", "true").lower()
in [
"true",
"1",
],
Expand Down

0 comments on commit 6cb60d1

Please sign in to comment.