Browse Source

Fixed syntax error.

noetic
Alan G. Sanchez 2 years ago
parent
commit
7c5c00e85c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/pointcloud_transformer.py

+ 1
- 1
src/pointcloud_transformer.py View File

@ -80,7 +80,7 @@ class PointCloudTransformer:
try: try:
# run the transformPointCloud() function to change the referene frame # run the transformPointCloud() function to change the referene frame
# to the base_link # to the base_link
new_cloud = self.listener.transformPointCloud("/base_link" ,msg)
new_cloud = self.listener.transformPointCloud("base_link" ,msg)
return new_cloud return new_cloud
if new_cloud: if new_cloud:
break break

Loading…
Cancel
Save