Skip to content

Commit

Permalink
fix sell errors again.
Browse files Browse the repository at this point in the history
  • Loading branch information
xtk8532704 committed Jun 7, 2024
1 parent 0726d15 commit fd33f25
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,12 @@ def on_timer(self):
nearest_ego_odom_pos = self.rosbag_ego_odom_data[nearest_ego_odom_ind][1].pose.pose
self.stopwatch.toc("find_nearest_ego_odom_by_observation")

# find a list of ego odoms around the nearst_ego_odom_pos.
# find a list of ego odoms around the nearest_ego_odom_pos.

Check warning on line 123 in planning/planning_debug_tools/scripts/perception_replayer/perception_reproducer_v2.py

View workflow job for this annotation

GitHub Actions / spell-check-partial

Unknown word (odoms)
self.stopwatch.tic("find_nearby_ego_odom_indies")
ego_odom_indices = self.find_nearby_ego_odom_indies(nearest_ego_odom_pos,
self.rosbag_ego_odom_search_radius)
ego_odom_indices = self.find_nearby_ego_odom_indies(
nearst_ego_odom_pos, self.rosbag_ego_odom_seach_radius
nearest_ego_odom_pos, self.rosbag_ego_odom_seach_radius

Check warning on line 128 in planning/planning_debug_tools/scripts/perception_replayer/perception_reproducer_v2.py

View workflow job for this annotation

GitHub Actions / spell-check-partial

Unknown word (seach)
)
self.stopwatch.toc("find_nearby_ego_odom_indies")

Expand Down

0 comments on commit fd33f25

Please sign in to comment.