Skip to content

Commit

Permalink
fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rickwierenga committed Nov 3, 2023
1 parent e0c735a commit 8a085b2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pylabrobot/liquid_handling/backends/hamilton/STAR.py
Original file line number Diff line number Diff line change
Expand Up @@ -2302,8 +2302,6 @@ async def iswap_release_picked_up_resource(
minimum_traverse_height_at_beginning_of_a_command: int = 2840,
z_position_at_the_command_end: int = 2840,
collision_control_level: int = 0,
acceleration_index_high_acc: int = 4, #unused
acceleration_index_low_acc: int = 1 #unused
):
""" After a resource is picked up, release it at the specified location. """

Expand Down Expand Up @@ -4003,7 +4001,8 @@ async def core_move_picked_up_resource(
y_position=int(center.y * 10),
z_position=int(center.z * 10),
z_speed=z_speed,
minimum_traverse_height_at_beginning_of_a_command=minimum_traverse_height_at_beginning_of_a_command,
minimum_traverse_height_at_beginning_of_a_command=
minimum_traverse_height_at_beginning_of_a_command,
)

async def core_release_picked_up_resource(
Expand Down Expand Up @@ -4041,7 +4040,8 @@ async def core_release_picked_up_resource(
z_press_on_distance=0,
z_speed=500,
open_gripper_position=int(grip_width*10) + 30,
minimum_traverse_height_at_beginning_of_a_command=minimum_traverse_height_at_beginning_of_a_command,
minimum_traverse_height_at_beginning_of_a_command=
minimum_traverse_height_at_beginning_of_a_command,
z_position_at_the_command_end=z_position_at_the_command_end,
return_tool=True
)
Expand Down Expand Up @@ -4157,6 +4157,7 @@ async def core_move_plate_to_position(
z_speed: int = 500,
minimum_traverse_height_at_beginning_of_a_command: int = 3600,
):
""" Move a plate with CoRe gripper tool. """

command_output = await self.send_command(
module="C0",
Expand Down

0 comments on commit 8a085b2

Please sign in to comment.