docs: 更新用户脚本连接服务器功能说明

This commit is contained in:
Quan
2025-12-15 21:12:56 +08:00
parent 9d2547885d
commit e53c15ddc1
5 changed files with 38 additions and 5 deletions

View File

@@ -45,7 +45,11 @@ class CLI:
self.path = ctx.params.pop("settings")
self.update = ctx.params.pop("update_settings")
self.settings = Settings(self.__check_settings_path())
self.parameter = self.settings.run() | self.__clean_params(ctx.params)
self.parameter = (
self.settings.run()
| self.__clean_params(ctx.params)
| {"script_server": False}
)
self.APP = XHS(**self.parameter)
async def __aenter__(self):