Skip to content

Commit

Permalink
Used pre-commit to fix formatting locally.
Browse files Browse the repository at this point in the history
  • Loading branch information
jodle001 committed Jan 3, 2024
1 parent e447429 commit 6f303b5
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions abb_bringup/launch/abb_moveit.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ def launch_setup(context, *args, **kwargs):
)
.robot_description_semantic(
file_path=os.path.join(
get_package_share_directory(f"{moveit_config_package.perform(context)}"),
get_package_share_directory(
f"{moveit_config_package.perform(context)}"
),
"config",
f"{moveit_config_file.perform(context)}",
)
Expand All @@ -55,14 +57,18 @@ def launch_setup(context, *args, **kwargs):
)
.robot_description_kinematics(
file_path=os.path.join(
get_package_share_directory(f"{moveit_config_package.perform(context)}"),
get_package_share_directory(
f"{moveit_config_package.perform(context)}"
),
"config",
"kinematics.yaml",
)
)
.trajectory_execution(
file_path=os.path.join(
get_package_share_directory(f"{moveit_config_package.perform(context)}"),
get_package_share_directory(
f"{moveit_config_package.perform(context)}"
),
"config",
"moveit_controllers.yaml",
)
Expand All @@ -73,11 +79,13 @@ def launch_setup(context, *args, **kwargs):
publish_state_updates=True,
publish_transforms_updates=True,
publish_robot_description=True,
publish_robot_description_semantic=True
publish_robot_description_semantic=True,
)
.joint_limits(
file_path=os.path.join(
get_package_share_directory(f"{moveit_config_package.perform(context)}"),
get_package_share_directory(
f"{moveit_config_package.perform(context)}"
),
"config",
"joint_limits.yaml",
)
Expand All @@ -89,7 +97,7 @@ def launch_setup(context, *args, **kwargs):
moveit_controllers = {
"moveit_simple_controller_manager": load_yaml(
f"{moveit_config_package.perform(context)}",
"config/moveit_controllers.yaml"
"config/moveit_controllers.yaml",
),
"moveit_controller_manager": "moveit_simple_controller_manager/MoveItSimpleControllerManager",
}
Expand Down

0 comments on commit 6f303b5

Please sign in to comment.