Skip to content

Commit

Permalink
docs(api): change labware in Location.move example from 'Hi' to None (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson committed Oct 1, 2020
1 parent 55daec2 commit 07e863f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/opentrons/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def move(self, point: Point) -> 'Location':
.. code-block:: python
>>> loc = Location(Point(1, 1, 1), 'Hi')
>>> loc = Location(Point(1, 1, 1), None)
>>> new_loc = loc.move(Point(1, 1, 1))
>>> assert loc_2.point == Point(2, 2, 2) # True
>>> assert loc.point == Point(1, 1, 1) # True
Expand Down

0 comments on commit 07e863f

Please sign in to comment.