From 47449581f1ddd03efca06909e60ad07f0e9d79d1 Mon Sep 17 00:00:00 2001 From: Seth Foster Date: Thu, 6 Feb 2025 16:54:39 -0500 Subject: [PATCH] fixup the description for the location field --- api/src/opentrons/protocol_engine/commands/load_lid_stack.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/api/src/opentrons/protocol_engine/commands/load_lid_stack.py b/api/src/opentrons/protocol_engine/commands/load_lid_stack.py index 101042c99e6..9c5db1f8089 100644 --- a/api/src/opentrons/protocol_engine/commands/load_lid_stack.py +++ b/api/src/opentrons/protocol_engine/commands/load_lid_stack.py @@ -83,7 +83,7 @@ class LoadLidStackResult(BaseModel): stackLabwareId: str = Field( ..., - description="An ID to reference the Protocol Engine Labware Lid Stack in subsequent commands.", + description="An ID to reference the lid stack labware object created.", ) labwareIds: List[str] = Field( ..., @@ -97,7 +97,8 @@ class LoadLidStackResult(BaseModel): ..., description="The Location that the stack of lid labware has been loaded." ) stackLocationSequence: LabwareLocationSequence | None = Field( - None, description="The location sequence for this stack." + None, + description="The location sequence for the lid stack labware object created.", ) locationSequences: List[LabwareLocationSequence] | None = Field( None,