Skip to content

Commit

Permalink
Merge pull request #487 from Pbopbo/humble
Browse files Browse the repository at this point in the history
Adds support for namespaces to TurtleBot4Navigator.
  • Loading branch information
hilary-luo authored Oct 30, 2024
2 parents b6f30a2 + 4b5280c commit cb6ab27
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ class TurtleBot4Navigator(BasicNavigator):
is_docked = None
creating_path = False

def __init__(self):
super().__init__()
def __init__(self, namespace=''):
super().__init__(namespace=namespace)

self.create_subscription(DockStatus,
'dock_status',
Expand Down

0 comments on commit cb6ab27

Please sign in to comment.