We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6188912 commit 65dae2fCopy full SHA for 65dae2f
ur_robot_driver/launch/ur_rsp.launch.py
@@ -31,6 +31,7 @@
31
32
from launch_ros.actions import Node
33
from launch_ros.substitutions import FindPackageShare
34
+from launch_ros.parameter_descriptions import ParameterValue
35
36
from launch import LaunchDescription
37
from launch.actions import DeclareLaunchArgument
@@ -185,7 +186,9 @@ def generate_launch_description():
185
186
" ",
187
]
188
)
- robot_description = {"robot_description": robot_description_content}
189
+ robot_description = {
190
+ "robot_description": ParameterValue(robot_description_content, value_type=str)
191
+ }
192
193
declared_arguments = []
194
# UR specific arguments
0 commit comments