Skip to content

Commit

Permalink
Run pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jjaime2 committed Dec 18, 2024
1 parent 69d0976 commit ef1592b
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion ada_moveit/config/ada.urdf.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<xacro:arg name="end_effector_tool" default="fork" />

<!-- Import ada urdf file -->
<xacro:include filename="$(find ada_description)/urdf/ada.xacro" />
<xacro:include filename="$(find ada_description)/urdf/ada.xacro" />

<link name="root"/>
<xacro:property name="root" value="root" />
Expand Down
4 changes: 2 additions & 2 deletions ada_moveit/launch/demo.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def generate_launch_description():
"end_effector_tool",
default_value="fork",
description="The end-effector tool being used: 'none', 'fork', 'articulable_fork'",
choices=['none', 'fork', 'articulable_fork']
choices=["none", "fork", "articulable_fork"],
)
end_effector_tool = LaunchConfiguration("end_effector_tool")

Expand Down Expand Up @@ -104,7 +104,7 @@ def generate_launch_description():
# Get MoveIt Configs
builder = MoveItConfigsBuilder("ada", package_name="ada_moveit")
builder = builder.robot_description(
mappings={'sim': sim, 'end_effector_tool': end_effector_tool}
mappings={"sim": sim, "end_effector_tool": end_effector_tool}
)
moveit_config = builder.to_moveit_configs()

Expand Down
4 changes: 2 additions & 2 deletions ada_moveit/launch/move_group.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def get_move_group_launch(context):
# Get MoveIt Configs
builder = MoveItConfigsBuilder("ada", package_name="ada_moveit")
builder = builder.robot_description(
mappings={'sim': sim, 'end_effector_tool': end_effector_tool}
mappings={"sim": sim, "end_effector_tool": end_effector_tool}
)
moveit_config = builder.to_moveit_configs()

Expand Down Expand Up @@ -70,7 +70,7 @@ def generate_launch_description():
"end_effector_tool",
default_value="fork",
description="The end-effector tool being used: 'none', 'fork', 'articulable_fork'",
choices=['none', 'fork', 'articulable_fork']
choices=["none", "fork", "articulable_fork"],
)

ld = LaunchDescription()
Expand Down
4 changes: 2 additions & 2 deletions ada_moveit/launch/moveit_rviz.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ def generate_launch_description():
"end_effector_tool",
default_value="fork",
description="The end-effector tool being used: 'none', 'fork', 'articulable_fork'",
choices=['none', 'fork', 'articulable_fork']
choices=["none", "fork", "articulable_fork"],
)
end_effector_tool = LaunchConfiguration("end_effector_tool")
ld.add_action(eet_da)

# Get MoveIt Configs
builder = MoveItConfigsBuilder("ada", package_name="ada_moveit")
builder = builder.robot_description(
mappings={'sim': sim, 'end_effector_tool': end_effector_tool}
mappings={"sim": sim, "end_effector_tool": end_effector_tool}
)
moveit_config = builder.to_moveit_configs()

Expand Down
4 changes: 2 additions & 2 deletions ada_moveit/launch/rsp.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ def generate_launch_description():
"end_effector_tool",
default_value="fork",
description="The end-effector tool being used: 'none', 'fork', 'articulable_fork'",
choices=['none', 'fork', 'articulable_fork']
choices=["none", "fork", "articulable_fork"],
)
end_effector_tool = LaunchConfiguration("end_effector_tool")
ld.add_action(eet_da)

# Get MoveIt Configs
builder = MoveItConfigsBuilder("ada", package_name="ada_moveit")
builder = builder.robot_description(
mappings={'sim': sim, 'end_effector_tool': end_effector_tool}
mappings={"sim": sim, "end_effector_tool": end_effector_tool}
)
moveit_config = builder.to_moveit_configs()

Expand Down
4 changes: 2 additions & 2 deletions ada_moveit/launch/spawn_controllers.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ def generate_launch_description():
"end_effector_tool",
default_value="fork",
description="The end-effector tool being used: 'none', 'fork', 'articulable_fork'",
choices=['none', 'fork', 'articulable_fork']
choices=["none", "fork", "articulable_fork"],
)
end_effector_tool = LaunchConfiguration("end_effector_tool")
ld.add_action(eet_da)

# Get MoveIt Configs
builder = MoveItConfigsBuilder("ada", package_name="ada_moveit")
builder = builder.robot_description(
mappings={'sim': sim, 'end_effector_tool': end_effector_tool}
mappings={"sim": sim, "end_effector_tool": end_effector_tool}
)
moveit_config = builder.to_moveit_configs()

Expand Down
4 changes: 2 additions & 2 deletions ada_moveit/launch/static_virtual_joint_tfs.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ def generate_launch_description():
"end_effector_tool",
default_value="fork",
description="The end-effector tool being used: 'none', 'fork', 'articulable_fork'",
choices=['none', 'fork', 'articulable_fork']
choices=["none", "fork", "articulable_fork"],
)
end_effector_tool = LaunchConfiguration("end_effector_tool")
ld.add_action(eet_da)

# Get MoveIt Configs
builder = MoveItConfigsBuilder("ada", package_name="ada_moveit")
builder = builder.robot_description(
mappings={'sim': sim, 'end_effector_tool': end_effector_tool}
mappings={"sim": sim, "end_effector_tool": end_effector_tool}
)
moveit_config = builder.to_moveit_configs()

Expand Down
4 changes: 2 additions & 2 deletions ada_moveit/launch/warehouse_db.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ def generate_launch_description():
"end_effector_tool",
default_value="fork",
description="The end-effector tool being used: 'none', 'fork', 'articulable_fork'",
choices=['none', 'fork', 'articulable_fork']
choices=["none", "fork", "articulable_fork"],
)
end_effector_tool = LaunchConfiguration("end_effector_tool")
ld.add_action(eet_da)

# Get MoveIt Configs
builder = MoveItConfigsBuilder("ada", package_name="ada_moveit")
builder = builder.robot_description(
mappings={'sim': sim, 'end_effector_tool': end_effector_tool}
mappings={"sim": sim, "end_effector_tool": end_effector_tool}
)
moveit_config = builder.to_moveit_configs()

Expand Down

0 comments on commit ef1592b

Please sign in to comment.