From a9053b822fcbe5736b16c6a6beb028d6631275f6 Mon Sep 17 00:00:00 2001 From: Xuwznln <18435084+Xuwznln@users.noreply.github.com> Date: Tue, 10 Feb 2026 13:06:05 +0800 Subject: [PATCH] fix config load --- unilabos/config/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unilabos/config/config.py b/unilabos/config/config.py index c91a07d4..9677b210 100644 --- a/unilabos/config/config.py +++ b/unilabos/config/config.py @@ -145,5 +145,5 @@ def load_config(config_path=None): traceback.print_exc() exit(1) else: - config_path = os.path.join(os.path.dirname(__file__), "local_config.py") + config_path = os.path.join(os.path.dirname(__file__), "example_config.py") load_config(config_path)