Skip to content

Commit

Permalink
Wrap description as string parameter
Browse files Browse the repository at this point in the history
Signed-off-by: Yadunund <yadunund@openrobotics.org>
  • Loading branch information
Yadunund committed Jan 3, 2024
1 parent 13d0e2e commit a8bf3a8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion abb_bringup/launch/abb_control.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
PathJoinSubstitution,
)
from launch_ros.actions import Node
from launch_ros.descriptions import ParameterValue
from launch_ros.substitutions import FindPackageShare


Expand Down Expand Up @@ -155,7 +156,9 @@ def generate_launch_description():
" ",
]
)
robot_description = {"robot_description": robot_description_content}
robot_description = {
"robot_description": ParameterValue(robot_description_content, value_type=str)
}

robot_controllers = PathJoinSubstitution(
[FindPackageShare(runtime_config_package), "config", controllers_file]
Expand Down

0 comments on commit a8bf3a8

Please sign in to comment.