From 6cc693ed5fda0b6ec7dc9150931b1cb456115ceb Mon Sep 17 00:00:00 2001 From: "hanhua@dp.tech" <2509856570@qq.com> Date: Fri, 22 May 2026 16:38:48 +0800 Subject: [PATCH] delete day3 default params --- .../bioyond_studio/peptide_station/peptide_station.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/unilabos/devices/workstation/bioyond_studio/peptide_station/peptide_station.py b/unilabos/devices/workstation/bioyond_studio/peptide_station/peptide_station.py index 5de5b9ad..b79312e8 100644 --- a/unilabos/devices/workstation/bioyond_studio/peptide_station/peptide_station.py +++ b/unilabos/devices/workstation/bioyond_studio/peptide_station/peptide_station.py @@ -168,8 +168,12 @@ class PeptideCommonSubmitOptionalParams(TypedDict, total=False): parameter_overrides: Annotated[ List[Dict[str, Any]], Field( - default=[{"m": 0, "n": 0, "Key": "Example", "Value": "example value"}], - description="参数覆盖列表:Key 和 Value 必填,m/n 可选;省略 m/n 时 Key 必须唯一匹配。", + default_factory=list, + description=( + "参数覆盖列表,默认留空(不覆盖)。" + "如需覆盖子工作流某个步骤参数,按 [{\"Key\": \"参数名\", \"Value\": \"值\", \"m\": 0, \"n\": 0}] 格式填写。" + "Key 必须与 Bioyond 子工作流里某个 step 参数名精确匹配;m/n 可选,省略时 Key 在工作流内必须唯一。" + ), ), ] border_number: Annotated[int, Field(default=1, description="LIMS 创建订单 borderNumber,默认 1。")]