We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b87a7a commit 435c45fCopy full SHA for 435c45f
api/src/opentrons/protocol_api/labware.py
@@ -117,8 +117,13 @@ def parent(self) -> Labware:
117
@property
118
@requires_version(2, 0)
119
def has_tip(self) -> bool:
120
- """Whether this well contains a tip. Always ``False`` if the parent labware
121
- isn't a tip rack."""
+ """Whether this well contains a clean tip.
+
122
+ From API v2.2 on: Returns ``False`` if the well has an unclean tip.
123
+ Before API v2.2: Returns ``True`` as long as the well has a tip, even if it is unclean.
124
125
+ Always ``False`` if the parent labware isn't a tip rack.
126
+ """
127
return self._core.has_tip()
128
129
@has_tip.setter
0 commit comments