Closed k-okada closed 1 year ago
for name, options in params.iteritems(): is python2 codes. Use for name, options in params.items(): to work both python2 and python3.
for name, options in params.iteritems():
for name, options in params.items():
https://python-future.org/compatible_idioms.html#iterating-through-dict-keys-values-items
this need to pass test at https://github.com/jsk-ros-pkg/jsk_robot/actions/runs/3755199280/jobs/6380063414 (https://github.com/jsk-ros-pkg/jsk_robot/pull/1770 )
@kochigami
ありがとうございます。
for name, options in params.iteritems():
is python2 codes. Usefor name, options in params.items():
to work both python2 and python3.https://python-future.org/compatible_idioms.html#iterating-through-dict-keys-values-items
this need to pass test at https://github.com/jsk-ros-pkg/jsk_robot/actions/runs/3755199280/jobs/6380063414 (https://github.com/jsk-ros-pkg/jsk_robot/pull/1770 )
@kochigami