Skip to content

Commit

Permalink
fix move group runner changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Laura-Danielle committed Nov 1, 2024
1 parent 23e3e24 commit e74dad0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def all_nodes(self) -> Set[NodeId]:
for node in sequence.keys():
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()
Expand All @@ -253,7 +253,7 @@ def all_moving_nodes(self) -> Set[NodeId]:
for node, node_step in sequence.items():
if node_step.is_moving_step():
node_set.add(node)
return node_set
return node_set

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

0 comments on commit e74dad0

Please sign in to comment.