Skip to content

Commit e4c7415

Browse files
authored
Merge branch 'beta/v0.19.1' into fix/dummy_diag
2 parents c3812ac + ec7e474 commit e4c7415

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

planning/behavior_path_start_planner_module/config/start_planner.param.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
rss_params:
131131
rear_vehicle_reaction_time: 2.0
132132
rear_vehicle_safety_time_margin: 1.0
133-
lateral_distance_max_threshold: 2.0
133+
lateral_distance_max_threshold: 3.0
134134
longitudinal_distance_min_threshold: 3.0
135135
longitudinal_velocity_delta_time: 0.8
136136
# hysteresis factor to expand/shrink polygon

planning/planning_debug_tools/scripts/perception_replayer/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def toc(self, name):
146146
time.perf_counter() - self.start_times[name]
147147
) * 1000 # Convert to milliseconds
148148
if self.verbose:
149-
print(f"Time for {name}: {elapsed_time:.2f} ms")
149+
print(f"Time for {name}: {elapsed_time: .2f} ms")
150150

151151
# Reset the starting time for the name
152152
del self.start_times[name]

system/diagnostic_graph_aggregator/script/dump.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def print_table(lines: list, header: list):
3131
lines.insert(0, ["-" * w for w in widths])
3232
lines.insert(2, ["-" * w for w in widths])
3333
for line in lines:
34-
line = map(lambda v, w: f"{v:{w}}", line, widths)
34+
line = map(lambda v, w: f"{v: {w}}", line, widths)
3535
line = " | ".join(line)
3636
print(f"| {line} |")
3737

0 commit comments

Comments
 (0)