Skip to content

Commit de46018

Browse files
N-Eikizusizusi
authored andcommittedJun 26, 2024
fix(traffic_light_recognition): delete excessive f string (autowarefoundation#883)
* fix: Removed unnecessary f-string Signed-off-by: N-Eiki <eiki.nagata.2@tier4.jp> * style(pre-commit): autofix --------- Signed-off-by: N-Eiki <eiki.nagata.2@tier4.jp> Co-authored-by: N-Eiki <N-Eiki@users.noreply.github.com>
1 parent c257541 commit de46018

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed
 

‎autoware_launch/launch/components/traffic_light_recognition/traffic_light_occlusion_predictor.launch.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@
2727

2828
def create_traffic_light_occlusion_predictor(namespace):
2929
package = FindPackageShare("traffic_light_occlusion_predictor")
30-
include = PathJoinSubstitution(
31-
[package, f"launch/traffic_light_occlusion_predictor.launch.xml"]
32-
)
30+
include = PathJoinSubstitution([package, "launch/traffic_light_occlusion_predictor.launch.xml"])
3331

3432
input_camera_info = f"/sensing/camera/{namespace}/camera_info"
3533
output_rois = f"/perception/traffic_light_recognition/{namespace}/detection/rois"

0 commit comments

Comments
 (0)
Please sign in to comment.