From 879dcf78bf7a29a1a2b1cc26f435237789620595 Mon Sep 17 00:00:00 2001 From: William Valentin Date: Wed, 23 Jul 2025 20:41:24 -0700 Subject: [PATCH] Simplify dotenv loading in constants.py by removing explicit path and override --- src/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.py b/src/constants.py index 376bd88..5354e2c 100644 --- a/src/constants.py +++ b/src/constants.py @@ -1,7 +1,7 @@ import os from dotenv import load_dotenv -load_dotenv(dotenv_path="../.env", override=True) +load_dotenv() LOG_LEVEL = os.getenv("LOG_LEVEL", "INFO").upper() LOG_PATH = os.getenv("LOG_PATH", "/tmp/logs")