Skip to content

Commit 53e0e04

Browse files
committed
fixed lint error
1 parent 4a36e9a commit 53e0e04

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

api/src/opentrons/protocol_api/instrument_context.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,8 @@ def air_gap(
765765
raise RuntimeError("No previous Well cached to perform air gap")
766766
target = loc.labware.as_well().top(height)
767767
self.move_to(target, publish=False)
768-
self.aspirate(volume) # add (is_liquid: bool = True) parameter to aspirate? Or deduce location is not in well in Aspirate command?
768+
# add (is_liquid: bool = True) parameter to aspirate? Or deduce location is not in well in Aspirate command?
769+
self.aspirate(volume)
769770
return self
770771

771772
@publisher.publish(command=cmds.return_tip)

0 commit comments

Comments
 (0)