Skip to content

Commit d29de3d

Browse files
Fix #4001 (#4028)
1 parent 3ed4c2d commit d29de3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nav2_simple_commander/nav2_simple_commander/robot_navigator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ def _smoothPathImpl(self, path, smoother_id='', max_duration=2.0, check_for_coll
426426
def smoothPath(self, path, smoother_id='', max_duration=2.0, check_for_collision=False):
427427
"""Send a `SmoothPath` action request."""
428428
rtn = self._smoothPathImpl(
429-
self, path, smoother_id, max_duration, check_for_collision)
429+
path, smoother_id, max_duration, check_for_collision)
430430
if not rtn:
431431
return None
432432
else:

0 commit comments

Comments
 (0)