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

Commit

Permalink
fix: perception launcher syntax error (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
satoshi-ota authored Dec 20, 2021
1 parent 8a8e800 commit b641063
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit b641063

Please sign in to comment.