Skip to content

Commit

Permalink
use items for python3
Browse files Browse the repository at this point in the history
  • Loading branch information
knorth55 committed Jan 27, 2023
1 parent 8a93753 commit 3227246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roseus/test/test_geneus_send_msgs.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def send_msgs():
rospy.init_node('test_geneus_send_msgs', anonymous=True)
rate = rospy.Rate(10) # 10hz
while not rospy.is_shutdown():
for p,i in pubs.iteritems():
for p,i in pubs.items():
p.publish(i)
rate.sleep()

Expand Down

0 comments on commit 3227246

Please sign in to comment.