From f463f8038670eb91959d5c756b0b53eaeaa751ef Mon Sep 17 00:00:00 2001 From: Wenjie Zhang Date: Mon, 21 Jul 2025 13:10:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=83=A8=E5=88=86=E5=9C=BA=E6=99=AF?= =?UTF-8?q?=E4=B8=8B=20env=20=E4=B8=8D=E7=94=9F=E6=95=88=E7=9A=84=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/__init__.py b/src/__init__.py index 9f4c7888..bffd33b5 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1,6 +1,6 @@ from dotenv import load_dotenv -load_dotenv("src/.env") +load_dotenv("src/.env", override=True) from concurrent.futures import ThreadPoolExecutor # noqa: E402 executor = ThreadPoolExecutor()