Skip to content

Commit f84dd76

Browse files
authored
fix param list for hidden nodes (#268)
Signed-off-by: Dirk Thomas <[email protected]>
1 parent 9f6c337 commit f84dd76

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ros2param/ros2param/verb/list.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ def main(self, *, args): # noqa: D102
5555
n for n in node_names if node_name == n.full_name]
5656

5757
with DirectNode(args) as node:
58-
service_names = get_service_names(node=node)
58+
service_names = get_service_names(
59+
node=node, include_hidden_services=args.include_hidden_nodes)
5960

6061
clients = {}
6162
futures = {}

0 commit comments

Comments
 (0)