Skip to content

Commit 5db59a5

Browse files
committed
format
1 parent 1ae304a commit 5db59a5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pylabrobot/liquid_handling/liquid_handler.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2522,7 +2522,9 @@ def divide_list_into_chunks(
25222522
if not (any(tip_status) and not all(tip_status)):
25232523
continue # ignore non-partially-filled tip_racks
25242524

2525-
tipspots_w_tips = [tip_spot for has_tip, tip_spot in zip(tip_status, tip_rack.children) if has_tip]
2525+
tipspots_w_tips = [
2526+
tip_spot for has_tip, tip_spot in zip(tip_status, tip_rack.children) if has_tip
2527+
]
25262528

25272529
# Identify model by hashed unique physical characteristics
25282530
current_model = hash(tipspots_w_tips[0].tracker.get_tip())

0 commit comments

Comments
 (0)