From 8eac0a2c3826145c0caee2f6182d3fe2ef45d00f Mon Sep 17 00:00:00 2001 From: gac-x12sa Date: Wed, 11 Jun 2025 15:14:44 +0200 Subject: [PATCH] wip --- csaxs_bec/bec_ipython_client/startup/pre_startup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csaxs_bec/bec_ipython_client/startup/pre_startup.py b/csaxs_bec/bec_ipython_client/startup/pre_startup.py index 81e2149..7d5459f 100644 --- a/csaxs_bec/bec_ipython_client/startup/pre_startup.py +++ b/csaxs_bec/bec_ipython_client/startup/pre_startup.py @@ -24,7 +24,7 @@ def get_config() -> ServiceConfig: """ Create and return the service configuration. """ - deployment_path = os.path.dirname(os.path.dirname(csaxs_bec.__file__)) + deployment_path = os.path.dirname(os.path.dirname(os.path.dirname(csaxs_bec.__file__))) files = os.listdir(deployment_path) if "bec_config.yaml" in files: return ServiceConfig(config_path=os.path.join(deployment_path, "bec_config.yaml"))