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 1ae304a commit 5db59a5Copy full SHA for 5db59a5
pylabrobot/liquid_handling/liquid_handler.py
@@ -2522,7 +2522,9 @@ def divide_list_into_chunks(
2522
if not (any(tip_status) and not all(tip_status)):
2523
continue # ignore non-partially-filled tip_racks
2524
2525
- tipspots_w_tips = [tip_spot for has_tip, tip_spot in zip(tip_status, tip_rack.children) if has_tip]
+ tipspots_w_tips = [
2526
+ tip_spot for has_tip, tip_spot in zip(tip_status, tip_rack.children) if has_tip
2527
+ ]
2528
2529
# Identify model by hashed unique physical characteristics
2530
current_model = hash(tipspots_w_tips[0].tracker.get_tip())
0 commit comments