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 55d3bea commit bb452b3Copy full SHA for bb452b3
pylabrobot/liquid_handling/liquid_handler.py
@@ -1911,7 +1911,12 @@ async def dispense96(
1911
if tip is None:
1912
continue
1913
1914
- liquids = tip.tracker.remove_liquid(volume=volume)
+ # even if the volume tracker is disabled, a liquid (None, volume) is added to the list
1915
+ # during the aspiration command
1916
+ if tip.tracker.is_disabled or not does_volume_tracking():
1917
+ liquids = [(None, volume)]
1918
+ else:
1919
+ liquids = tip.tracker.remove_liquid(volume=volume)
1920
reversed_liquids = list(reversed(liquids))
1921
all_liquids.append(reversed_liquids)
1922
0 commit comments