Skip to content

Commit e025f11

Browse files
committed
line-length
1 parent f95f88a commit e025f11

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

mesh_navigation_tutorials/launch/mbf_mesh_navigation_server_launch.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,14 @@ def generate_launch_description():
4242
launch_args = [
4343
DeclareLaunchArgument(
4444
"mesh_map_path",
45-
description="Path to the mesh file that defines the map. Allowed formats are our internal HDF5 format and all standard mesh formats loadable by Assimp.",
45+
description="Path to the mesh file that defines the map."
46+
"Allowed formats are our internal HDF5 format and all"
47+
"standard mesh formats loadable by Assimp.",
4648
),
4749
DeclareLaunchArgument(
4850
"mesh_map_working_path",
49-
description="Path to the mesh file used by the mesh navigation to store costs during operation. Only HDF5 formats are permitted.",
51+
description="Path to the mesh file used by the mesh navigation "
52+
"to store costs during operation. Only HDF5 formats are permitted.",
5053
),
5154
]
5255
mesh_map_path = LaunchConfiguration("mesh_map_path")

mesh_navigation_tutorials/launch/mesh_navigation_tutorial_launch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,10 @@ def generate_launch_description():
168168
[
169169
pkg_mesh_navigation_tutorials,
170170
"maps",
171-
PythonExpression(['"', map_name, mesh_nav_map_ext, '"']), # loading a map from here
171+
PythonExpression(['"', map_name, mesh_nav_map_ext, '"']),
172172
]
173173
),
174-
"mesh_map_working_path": PythonExpression(['"', map_name, '" + ".h5"']) # working on a local copy (as HDF5 format)
174+
"mesh_map_working_path": PythonExpression(['"', map_name, '" + ".h5"'])
175175
}.items(),
176176
)
177177

0 commit comments

Comments
 (0)