From d24b78a1e84a3b3ed540f7325ded2fa644dc8e0e Mon Sep 17 00:00:00 2001 From: Philip Usher Date: Mon, 20 Jan 2025 14:35:06 +0000 Subject: [PATCH] file test --- examples/simple_workflow.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/simple_workflow.py b/examples/simple_workflow.py index 1192dbb7..13341107 100644 --- a/examples/simple_workflow.py +++ b/examples/simple_workflow.py @@ -33,7 +33,9 @@ from pathlib import Path # Set the path to the configuration file -SETTINGS_FILE = Path().cwd().parents[3] / "tests" / "config.toml" +SETTINGS_FILE = Path().cwd().parents[2] / "tests" / "config.toml" +print(SETTINGS_FILE) +print(SETTINGS_FILE.exists()) os.environ["PYCONCEPTEV_SETTINGS"] = str(SETTINGS_FILE)