From aba2690d0e6d6da6808f7f2a56d160037864895f Mon Sep 17 00:00:00 2001 From: rhoadesScholar Date: Mon, 15 Jul 2024 11:04:22 -0400 Subject: [PATCH] =?UTF-8?q?perf:=20=E2=9A=A1=EF=B8=8F=20Add=20found=20opti?= =?UTF-8?q?ons=20file=20to=20the=20environment=20variable.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dacapo/options.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dacapo/options.py b/dacapo/options.py index 589d3d7cd..fb40b94b2 100644 --- a/dacapo/options.py +++ b/dacapo/options.py @@ -146,6 +146,7 @@ def config_file(cls) -> Optional[Path]: ] for path in options_files: if path.exists(): + os.environ["OPTIONS_FILE"] = str(path) return path return None