Skip to content

Commit a93bbb2

Browse files
committed
Fix lint
1 parent 3892aab commit a93bbb2

File tree

1 file changed

+2
-2
lines changed
  • clearpath_generator_common/clearpath_generator_common/semantic_description

1 file changed

+2
-2
lines changed

clearpath_generator_common/clearpath_generator_common/semantic_description/manipulators.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ def __init__(self, manipulator: BaseManipulator, pose: ManipulatorPose) -> None:
4242
self.pose = pose
4343

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

4747
def parameters(self) -> dict:
4848
str_joints = [f'{joint:.4f}' for joint in self.pose.joints]
4949
return {
5050
'name': self.manipulator.name,
5151
'group_state': self.pose.name,
52-
'joint_positions': f"${{[{', '.join(str_joints)}]}}"
52+
'joint_positions': f'${{[{", ".join(str_joints)}]}}'
5353
}
5454

5555
def blocks(self) -> str:

0 commit comments

Comments
 (0)