Skip to content
This repository has been archived by the owner on Mar 27, 2023. It is now read-only.

fix: perception launcher syntax error #160

Merged
merged 1 commit into from
Dec 20, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def create_single_frame_obstacle_segmentation_components(self, input_topic, outp
components.append(
self.get_additional_lidars_concatenated_component(
input_topics=[common_pipeline_output]
+ list(map(lambda x: f"{x}/pointcloud"), additional_lidars),
+ list(map(lambda x: f"{x}/pointcloud", additional_lidars)),
output_topic=relay_topic if use_ransac else output_topic,
)
)
Expand Down