From 634a9654998c49327352c47e0f552a741c2c0c6e Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Wed, 2 Apr 2025 00:22:39 +0000 Subject: [PATCH] style: format code with Black and Ruff Formatter This commit fixes the style issues introduced in 4a007b5 according to the output from Black and Ruff Formatter. Details: None --- commerce/settings.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/commerce/settings.py b/commerce/settings.py index 466b3bf..08e251e 100644 --- a/commerce/settings.py +++ b/commerce/settings.py @@ -89,9 +89,7 @@ # Use PostgreSQL if DATABASE_URL is provided if os.getenv("DATABASE_URL") and not DEBUG: DATABASES["default"] = dj_database_url.config( - default=os.getenv("DATABASE_URL"), - conn_max_age=600, - ssl_require=True + default=os.getenv("DATABASE_URL"), conn_max_age=600, ssl_require=True ) print("Using PostgreSQL database") else: