Skip to content

Commit

Permalink
address todo comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jbleon95 committed Dec 4, 2024
1 parent ebcf65f commit 7fe084d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions api/src/opentrons/protocol_engine/commands/get_next_tip.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ class GetNextTipParams(PipetteIdMixin):
"""Payload needed to resolve the next available tip."""

labwareIds: List[str] = Field(
..., # TODO order matters
description="Labware ID(s) of tip racks to resolve next available tip(s) from.",
...,
description="Labware ID(s) of tip racks to resolve next available tip(s) from."
" Labware IDs will be resolved sequentially",
)
startingWellName: Optional[str] = Field(
"A1", description="Name of starting tip rack 'well'."
Expand Down
2 changes: 1 addition & 1 deletion shared-data/command/schemas/11.json
Original file line number Diff line number Diff line change
Expand Up @@ -4034,7 +4034,7 @@
},
"labwareIds": {
"title": "Labwareids",
"description": "Labware ID(s) of tip racks to resolve next available tip(s) from.",
"description": "Labware ID(s) of tip racks to resolve next available tip(s) from. Labware IDs will be resolved sequentially",
"type": "array",
"items": {
"type": "string"
Expand Down

0 comments on commit 7fe084d

Please sign in to comment.