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)