You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
python -m examples.test_turtlebot crashes due to this TypeError:
Traceback (most recent call last):
File "/usr/lib/python3.8/runpy.py", line 194, in _run_module_as_main
return _run_code(code, main_globals, None,
File "/usr/lib/python3.8/runpy.py", line 87, in _run_code
exec(code, run_globals)
File "/home/abhishek/pybullet-planning/examples/test_turtlebot.py", line 98, in <module>
main()
File "/home/abhishek/pybullet-planning/examples/test_turtlebot.py", line 84, in main
center = (lower + upper)/2. # Computing the center of the AABB
TypeError: unsupported operand type(s) for /: 'list' and 'float'
python -m examples.test_turtlebot
crashes due to thisTypeError
:pybullet-planning/examples/test_turtlebot.py
Lines 82 to 84 in d536384
Since
lower
andupper
are both typelist
, adding them results in concatenation instead of element-wise addition.The text was updated successfully, but these errors were encountered: