Browse Source

Fixed indentation issue.

noetic
hello-sanchez 2 years ago
parent
commit
f1633424e2
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      src/tf2_broadcaster.py
  2. +2
    -2
      src/tf2_listener.py

+ 2
- 2
src/tf2_broadcaster.py View File

@ -88,6 +88,6 @@ if __name__ == '__main__':
FixedFrameBroadcaster() FixedFrameBroadcaster()
# Give control to ROS. This will allow the callback to be called whenever new # Give control to ROS. This will allow the callback to be called whenever new
# messages come in. If we don't put this line in, then the node will not work,
# and ROS will not process any messages
# messages come in. If we don't put this line in, then the node will not work,
# and ROS will not process any messages
rospy.spin() rospy.spin()

+ 2
- 2
src/tf2_listener.py View File

@ -64,6 +64,6 @@ if __name__ == '__main__':
FrameListener() FrameListener()
# Give control to ROS. This will allow the callback to be called whenever new # Give control to ROS. This will allow the callback to be called whenever new
# messages come in. If we don't put this line in, then the node will not work,
# and ROS will not process any messages
# messages come in. If we don't put this line in, then the node will not work,
# and ROS will not process any messages
rospy.spin() rospy.spin()

Loading…
Cancel
Save