Skip to content

Commit

Permalink
more rebase fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Laura-Danielle committed Nov 8, 2024
1 parent 6eeede9 commit 1fb5978
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions hardware/opentrons_hardware/hardware_control/move_group_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,16 +255,6 @@ def all_moving_nodes(self) -> Set[NodeId]:
node_set.add(node)
return node_set

def all_moving_nodes(self) -> Set[NodeId]:
"""Get all of the moving nodes in the move group runner's move groups."""
node_set: Set[NodeId] = set()
for group in self._move_groups:
for sequence in group:
for node, node_step in sequence.items():
if node_step.is_moving_step():
node_set.add(node)
return node_set

async def _send_groups(self, can_messenger: CanMessenger) -> None:
"""Send commands to set up the message groups."""
for group_i, group in enumerate(self._move_groups):
Expand Down

0 comments on commit 1fb5978

Please sign in to comment.