diff --git a/api/src/opentrons/protocol_api/labware.py b/api/src/opentrons/protocol_api/labware.py index 43c2c0ce5a84..6f38c123c7ab 100644 --- a/api/src/opentrons/protocol_api/labware.py +++ b/api/src/opentrons/protocol_api/labware.py @@ -229,6 +229,8 @@ def meniscus(self, z: float = 0.0) -> Location: :return: A :py:class:`~opentrons.types.Location` corresponding to the absolute position of the meniscus-center of the well, plus the ``z`` offset (if specified). + + :meta private: """ return Location(self._core.get_meniscus(z_offset=z), self) diff --git a/api/src/opentrons/protocol_api/protocol_context.py b/api/src/opentrons/protocol_api/protocol_context.py index 0fca3fdc8f30..64a73457608e 100644 --- a/api/src/opentrons/protocol_api/protocol_context.py +++ b/api/src/opentrons/protocol_api/protocol_context.py @@ -209,8 +209,12 @@ def api_version(self) -> APIVersion: return self._api_version @property - @requires_version(2, 20) + @requires_version(2, 21) def robot(self) -> RobotContext: + """The :py:class:`.RobotContext` for the protocol. + + :meta private: + """ return self._robot @property