From 1a38109bf8bb84b74d789ba6952e03e94e298a61 Mon Sep 17 00:00:00 2001
From: Camillo Moschner <camillo.moschner@biocam.guide>
Date: Thu, 9 Jan 2025 23:27:55 +0000
Subject: [PATCH] `make format`

---
 pylabrobot/liquid_handling/backends/hamilton/STAR.py | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/pylabrobot/liquid_handling/backends/hamilton/STAR.py b/pylabrobot/liquid_handling/backends/hamilton/STAR.py
index df6b56f9f9..27cda131b5 100644
--- a/pylabrobot/liquid_handling/backends/hamilton/STAR.py
+++ b/pylabrobot/liquid_handling/backends/hamilton/STAR.py
@@ -7384,8 +7384,12 @@ async def ztouch_probe_z_height_using_channel(
       start_pos_search = 334.7 - tip_len + fitting_depth
 
     tip_len_used_in_increments = (tip_len - fitting_depth) / STAR.z_drive_mm_per_increment
-    channel_head_start_pos = start_pos_search + tip_len - fitting_depth # start_pos of the head itself!
-    safe_head_bottom_z_pos = 99.98 + tip_len - fitting_depth # 99.98 == STAR.z_drive_increment_to_mm(9_320)
+    channel_head_start_pos = (
+      start_pos_search + tip_len - fitting_depth
+    )  # start_pos of the head itself!
+    safe_head_bottom_z_pos = (
+      99.98 + tip_len - fitting_depth
+    )  # 99.98 == STAR.z_drive_increment_to_mm(9_320)
     safe_head_top_z_pos = 334.7  # 334.7 == STAR.z_drive_increment_to_mm(31_200)
 
     lowest_immers_pos_increments = STAR.mm_to_z_drive_increment(lowest_immers_pos)