From b9411261eadfce047af9461fdbc4e83a598a639a Mon Sep 17 00:00:00 2001 From: KenanZhu <3471685733@qq.com> Date: Fri, 16 Jan 2026 23:25:42 +0800 Subject: [PATCH] =?UTF-8?q?style(ALMainWorkers):=20=E4=B8=80=E4=BA=9B?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/gui/ALMainWorkers.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/gui/ALMainWorkers.py b/src/gui/ALMainWorkers.py index 0b933d6..19faad0 100644 --- a/src/gui/ALMainWorkers.py +++ b/src/gui/ALMainWorkers.py @@ -69,15 +69,11 @@ class AutoLibWorker(QThread, MsgBase): self._showTrace( f"正在加载配置文件, 运行配置文件路径: {self.__config_paths["run"]}" ) - self.__run_config = ConfigReader( - self.__config_paths["run"] - ).getConfigs() + self.__run_config = ConfigReader(self.__config_paths["run"]).getConfigs() self._showTrace( f"正在加载配置文件, 用户配置文件路径: {self.__config_paths["user"]}" ) - self.__user_config = ConfigReader( - self.__config_paths["user"] - ).getConfigs() + self.__user_config = ConfigReader(self.__config_paths["user"]).getConfigs() if self.__run_config is None or self.__user_config is None: self._showTrace("配置文件加载失败, 请检查配置文件是否正确") self._showTrace("配置文件加载失败, 请检查配置文件是否正确")