Skip to content

Commit

Permalink
call get_action_interfaces() properly. (#898)
Browse files Browse the repository at this point in the history
Signed-off-by: Tomoya Fujita <Tomoya.Fujita@sony.com>
  • Loading branch information
fujitatomoya authored Apr 24, 2024
1 parent 2391d5c commit 305ef76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ros2action/ros2action/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def action_name_completer(prefix, parsed_args, **kwargs):
def action_type_completer(**kwargs):
"""Callable returning a list of action types."""
action_types = []
for package_name, action_names in get_action_interfaces.items():
for package_name, action_names in get_action_interfaces().items():
for action_name in action_names:
action_types.append(f'{package_name}/{action_name}')
return action_types
Expand Down

0 comments on commit 305ef76

Please sign in to comment.