From fbc51a2c0cd815ebe35b116b38a64440f96f957e Mon Sep 17 00:00:00 2001 From: Cliff Hill Date: Mon, 17 Jun 2024 11:00:36 -0400 Subject: [PATCH] Changest made to fix things. Signed-off-by: Cliff Hill --- .ds.baseline | 2 +- app/config.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.ds.baseline b/.ds.baseline index d91a2c576..82ab59b8d 100644 --- a/.ds.baseline +++ b/.ds.baseline @@ -169,7 +169,7 @@ "filename": "app/config.py", "hashed_secret": "577a4c667e4af8682ca431857214b3a920883efc", "is_verified": false, - "line_number": 112, + "line_number": 111, "is_secret": false } ], diff --git a/app/config.py b/app/config.py index 97c3ab9ba..095561755 100644 --- a/app/config.py +++ b/app/config.py @@ -1,4 +1,3 @@ -from concurrent.futures import ThreadPoolExecutor import json from os import getenv @@ -119,7 +118,7 @@ class Development(Config): class Test(Development): TESTING = True - WTF_CSRF_ENABLED = False # If enabled, pytest breaks. + WTF_CSRF_ENABLED = False # If enabled, pytest breaks. ASSET_DOMAIN = "static.example.com" ASSET_PATH = "https://static.example.com/"