Skip to content

Commit

Permalink
Fixed initialize of list
Browse files Browse the repository at this point in the history
Signed-off-by: Shintaro Sakoda <[email protected]>
  • Loading branch information
SakodaShintaro committed Feb 26, 2024
1 parent 16fb567 commit a7495f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions localization/ndt_evaluation/plot_box.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ def parse_args():
storage_filter = rosbag2_py.StorageFilter(topics=target_topics)
reader.set_filter(storage_filter)

pose1_data = list()
pose2_data = list()
pose1_data = []
pose2_data = []

while reader.has_next():
(topic_name, data, timestamp_rosbag) = reader.read_next()
Expand Down

0 comments on commit a7495f0

Please sign in to comment.