Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cbiering committed Feb 5, 2025
1 parent 2233f0b commit a51cfb1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nova/core/motion_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,11 @@ async def _execute(
tcp: str,
actions: list[Action],
on_movement: Callable[[MotionState], None],
movement_controller: MovementController | None = move_forward,
movement_controller: MovementController | None,
):
if movement_controller is None:
movement_controller = move_forward

# Load planned trajectory
load_plan_response = await self._load_planned_motion(joint_trajectory, tcp)

Expand Down

0 comments on commit a51cfb1

Please sign in to comment.