Skip to content

Commit cb6ab27

Browse files
authored
Merge pull request #487 from Pbopbo/humble
Adds support for namespaces to TurtleBot4Navigator.
2 parents b6f30a2 + 4b5280c commit cb6ab27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

turtlebot4_navigation/turtlebot4_navigation/turtlebot4_navigator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ class TurtleBot4Navigator(BasicNavigator):
5252
is_docked = None
5353
creating_path = False
5454

55-
def __init__(self):
56-
super().__init__()
55+
def __init__(self, namespace=''):
56+
super().__init__(namespace=namespace)
5757

5858
self.create_subscription(DockStatus,
5959
'dock_status',

0 commit comments

Comments
 (0)