Skip to content

Commit 4c3174e

Browse files
nfriedrich00SteveMacenski
authored andcommitted
Fix typo (#4087)
Fix AttributeError: 'BasicNavigator' object has no attribute '_BasicNavigator__getPathThroughPosesImpl' Signed-off-by: nfriedrich00 <[email protected]>
1 parent e0759aa commit 4c3174e

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
@@ -420,7 +420,7 @@ def _getPathThroughPosesImpl(self, start, goals, planner_id='', use_start=False)
420420

421421
def getPathThroughPoses(self, start, goals, planner_id='', use_start=False):
422422
"""Send a `ComputePathThroughPoses` action request."""
423-
rtn = self.__getPathThroughPosesImpl(start, goals, planner_id, use_start)
423+
rtn = self._getPathThroughPosesImpl(start, goals, planner_id, use_start)
424424

425425
if self.status != GoalStatus.STATUS_SUCCEEDED:
426426
self.warn(f'Getting path failed with status code: {self.status}')

0 commit comments

Comments
 (0)