Skip to content
This repository has been archived by the owner on Nov 12, 2024. It is now read-only.

Commit

Permalink
Update to python 3 print statement convention
Browse files Browse the repository at this point in the history
  • Loading branch information
Marius-Juston authored Nov 12, 2024
1 parent b443160 commit 9a6861d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def callback(self, msg):
pose = np.matmul(self.pose_transform, pose)
x, y = pose[0][0], pose[1][0]

print x, y, theta
print(x, y, theta)

width = rospy.get_param("width", 10)
height = rospy.get_param("height", 10)
Expand Down

0 comments on commit 9a6861d

Please sign in to comment.