Skip to content

Commit

Permalink
docs(api): fix stringified runtime parameter value
Browse files Browse the repository at this point in the history
  • Loading branch information
ecormany committed Jul 3, 2024
1 parent ee62429 commit 8b444d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/docs/v2/parameters/using_values.rst
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ An example of such an action is applying labware offset data. Say you have a par

# within run()
plate = protocol.load_labware(
load_name="protocol.params.plate_type", location="D2"
load_name=protocol.params.plate_type, location="D2"
)

When performing run setup, you're prompted to apply offsets before selecting parameter values. This is your only opportunity to apply offsets, so they're applied for the default parameter values — in this case, the Corning plate. If you then change the "Well plate type" parameter to the NEST plate, the NEST plate will have default offset values (0.0 on all axes). You can fix this by running Labware Position Check, since it takes place after reanalysis, or by using :py:meth:`.Labware.set_offset` in your protocol.

0 comments on commit 8b444d9

Please sign in to comment.