File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
pylabrobot/liquid_handling Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -1772,13 +1772,9 @@ async def dispense96(
17721772 for well , channel in zip (containers , self .head96 .values ()):
17731773 # even if the volume tracker is disabled, a liquid (None, volume) is added to the list
17741774 # during the aspiration command
1775- if channel .get_tip ().tracker .is_disabled or not does_volume_tracking ():
1776- reversed_liquids = [(None , volume )]
1777- all_liquids .append (reversed_liquids )
1778- else :
1779- liquids = channel .get_tip ().tracker .remove_liquid (volume = volume )
1780- reversed_liquids = list (reversed (liquids ))
1781- all_liquids .append (reversed_liquids )
1775+ liquids = channel .get_tip ().tracker .remove_liquid (volume = volume )
1776+ reversed_liquids = list (reversed (liquids ))
1777+ all_liquids .append (reversed_liquids )
17821778
17831779 if not well .tracker .is_disabled and does_volume_tracking ():
17841780 for liquid , vol in reversed_liquids :
You can’t perform that action at this time.
0 commit comments