Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
luis-camero committed Feb 7, 2025
1 parent 3892aab commit a93bbb2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ def __init__(self, manipulator: BaseManipulator, pose: ManipulatorPose) -> None:
self.pose = pose

def macro(self) -> str:
return f"{self.manipulator.MANIPULATOR_MODEL}_group_state"
return f'{self.manipulator.MANIPULATOR_MODEL}_group_state'

def parameters(self) -> dict:
str_joints = [f'{joint:.4f}' for joint in self.pose.joints]
return {
'name': self.manipulator.name,
'group_state': self.pose.name,
'joint_positions': f"${{[{', '.join(str_joints)}]}}"
'joint_positions': f'${{[{", ".join(str_joints)}]}}'
}

def blocks(self) -> str:
Expand Down

0 comments on commit a93bbb2

Please sign in to comment.