Skip to content

Commit

Permalink
fix: suppress spell-check
Browse files Browse the repository at this point in the history
Signed-off-by: yoshiri <[email protected]>
  • Loading branch information
YoshiRi committed Feb 22, 2024
1 parent 47e2b8c commit 4a53f51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common_sensor_launch/launch/nebula_node_container.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,9 @@ def create_parameter_dict(*args):

# Ring Outlier Filter is the last component in the pipeline, so control the output frame here
if LaunchConfiguration("output_as_sensor_frame").perform(context):
ringoutlier_filter_parameters = {"output_frame": LaunchConfiguration("frame_id")}
ring_outlier_filter_parameters = {"output_frame": LaunchConfiguration("frame_id")}
else:
ringoutlier_filter_parameters = {"output_frame": ""} # keep the output frame as the input frame
ring_outlier_filter_parameters = {"output_frame": ""} # keep the output frame as the input frame
nodes.append(
ComposableNode(
package="pointcloud_preprocessor",
Expand All @@ -202,7 +202,7 @@ def create_parameter_dict(*args):
("input", "rectified/pointcloud_ex"),
("output", "pointcloud"),
],
parameters=[ringoutlier_filter_parameters],
parameters=[ring_outlier_filter_parameters],
extra_arguments=[{"use_intra_process_comms": LaunchConfiguration("use_intra_process")}],
)
)
Expand Down

0 comments on commit 4a53f51

Please sign in to comment.