From 34a98773abed2eafb23c0448162dced25e941633 Mon Sep 17 00:00:00 2001 From: imnyang Date: Wed, 18 Jun 2025 21:43:35 +0900 Subject: [PATCH] =?UTF-8?q?[Fix]=20GetSensitiveData=20=ED=95=A8=EC=88=98?= =?UTF-8?q?=EC=97=90=EC=84=9C=20=ED=8C=8C=EC=9D=BC=EC=9D=B4=20=EC=97=86?= =?UTF-8?q?=EC=9D=84=20=EA=B2=BD=EC=9A=B0=20=EC=98=88=EC=99=B8=20=EB=8C=80?= =?UTF-8?q?=EC=8B=A0=20None=20=EB=B0=98=ED=99=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/utils/browser_use/sensitive_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/browser_use/sensitive_data.py b/lib/utils/browser_use/sensitive_data.py index 56bbcc6..7d4fbf4 100644 --- a/lib/utils/browser_use/sensitive_data.py +++ b/lib/utils/browser_use/sensitive_data.py @@ -13,7 +13,7 @@ def GetSensitiveData(): file_path = os.path.join(os.getcwd(), '.sensitive.json') if not os.path.exists(file_path): - raise FileNotFoundError(f"The file {file_path} does not exist.") + return None with open(file_path, 'r') as file: sensitive_data = json.load(file)