Skip to content

Commit

Permalink
Fix typo (ros-navigation#4087)
Browse files Browse the repository at this point in the history
Fix AttributeError: 'BasicNavigator' object has no attribute '_BasicNavigator__getPathThroughPosesImpl'

Signed-off-by: nfriedrich00 <[email protected]>
Signed-off-by: enricosutera <[email protected]>
  • Loading branch information
nfriedrich00 authored and enricosutera committed May 19, 2024
1 parent 3643f52 commit 0356ba6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ def _getPathThroughPosesImpl(self, start, goals, planner_id='', use_start=False)

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

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

0 comments on commit 0356ba6

Please sign in to comment.