We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9da34d1 commit c66034dCopy full SHA for c66034d
1 file changed
pylabrobot/liquid_handling/backends/hamilton/STAR_tests.py
@@ -225,7 +225,9 @@ def _make_backend_for_setup(self) -> STARBackend:
225
backend.move_all_channels_in_z_safety = unittest.mock.AsyncMock()
226
backend.move_core_96_to_safe_position = unittest.mock.AsyncMock()
227
backend.request_tip_presence = unittest.mock.AsyncMock(return_value=[False] * 8)
228
- backend.request_firmware_version = unittest.mock.AsyncMock(return_value="C0RFid0001rf2024.01.01")
+ backend.request_firmware_version = unittest.mock.AsyncMock(
229
+ return_value="C0RFid0001rf2024.01.01"
230
+ )
231
backend.channels_request_y_minimum_spacing = unittest.mock.AsyncMock(return_value=[9.0] * 8)
232
return backend
233
0 commit comments