From 41acd32fc4c81f3b342f27e3a512c1d004b3c750 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Tue, 18 Oct 2022 18:11:22 +0200 Subject: [PATCH] turn off recurse for env --- cashu/core/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cashu/core/settings.py b/cashu/core/settings.py index 3ab3bc7..441d873 100644 --- a/cashu/core/settings.py +++ b/cashu/core/settings.py @@ -14,7 +14,7 @@ if os.path.isfile(ENV_FILE): env.read_env(ENV_FILE) else: ENV_FILE = "" - env.read_env() + env.read_env(recurse=False) DEBUG = env.bool("DEBUG", default=False) if not DEBUG: