Skip to content

Commit

Permalink
style: fix flake8 C417 (#321)
Browse files Browse the repository at this point in the history
Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
  • Loading branch information
kenji-miyake committed May 20, 2022
1 parent 3a79447 commit 5351cb8
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)),
+ [f"{x}/pointcloud" for x in additional_lidars],
output_topic=relay_topic if use_ransac else output_topic,
)
)
Expand Down

0 comments on commit 5351cb8

Please sign in to comment.