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 db1a84f commit 6f02bbdCopy full SHA for 6f02bbd
pylabrobot/liquid_handling/liquid_handler.py
@@ -1939,7 +1939,12 @@ async def dispense96(
1939
1940
# even if the volume tracker is disabled, a liquid (None, volume) is added to the list
1941
# during the aspiration command
1942
- liquids = tip.tracker.remove_liquid(volume=volume)
+ liquids: List[Tuple[Optional[Liquid], float]]
1943
+ if tip.tracker.is_disabled or not does_volume_tracking():
1944
+ liquids = [(None, volume)]
1945
+ all_liquids.append(liquids)
1946
+ else:
1947
+ liquids = tip.tracker.remove_liquid(volume=volume)
1948
reversed_liquids = list(reversed(liquids))
1949
all_liquids.append(reversed_liquids)
1950
0 commit comments