Skip to content

Commit

Permalink
add default values to optional fields of QUADRANT configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
sanni-t committed Aug 14, 2024
1 parent afba276 commit b158be7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/src/opentrons/protocol_engine/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -888,12 +888,12 @@ class QuadrantNozzleLayoutConfiguration(BaseModel):
description="The primary nozzle to use in the layout configuration. This nozzle will update the critical point of the current pipette. For now, this is also the back left corner of your rectangle.",
)
frontRightNozzle: Optional[str] = Field(
...,
None,
regex=NOZZLE_NAME_REGEX,
description="The front right nozzle in your configuration.",
)
backLeftNozzle: Optional[str] = Field(
...,
None,
regex=NOZZLE_NAME_REGEX,
description="The back left nozzle in your configuration.",
)
Expand Down

0 comments on commit b158be7

Please sign in to comment.