Skip to content

Commit

Permalink
Fix multi-line strings in DeclareLaunchArgument (#140) (#154)
Browse files Browse the repository at this point in the history
(cherry picked from commit d5adc9f)

Co-authored-by: Matthijs van der Burgh <[email protected]>
  • Loading branch information
mergify[bot] and MatthijsBurgh authored Apr 15, 2024
1 parent 5419266 commit d92ad1d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions launch/view_ur.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ def generate_launch_description():
DeclareLaunchArgument(
"description_package",
default_value="ur_description",
description="Description package with robot URDF/XACRO files. Usually the argument \
is not set, it enables use of a custom description.",
description="Description package with robot URDF/XACRO files. Usually the argument "
"is not set, it enables use of a custom description.",
)
)
declared_arguments.append(
Expand All @@ -86,9 +86,9 @@ def generate_launch_description():
DeclareLaunchArgument(
"tf_prefix",
default_value='""',
description="Prefix of the joint names, useful for \
multi-robot setup. If changed than also joint names in the controllers' configuration \
have to be updated.",
description="Prefix of the joint names, useful for "
"multi-robot setup. If changed than also joint names in the controllers' configuration "
"have to be updated.",
)
)

Expand Down

0 comments on commit d92ad1d

Please sign in to comment.