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(
1772
1772
for well , channel in zip (containers , self .head96 .values ()):
1773
1773
# even if the volume tracker is disabled, a liquid (None, volume) is added to the list
1774
1774
# 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 )
1782
1778
1783
1779
if not well .tracker .is_disabled and does_volume_tracking ():
1784
1780
for liquid , vol in reversed_liquids :
You can’t perform that action at this time.
0 commit comments