Skip to content

Commit

Permalink
Fix get_available_rmw_implementations() implementation.
Browse files Browse the repository at this point in the history
Signed-off-by: Michel Hidalgo <michel@ekumenlabs.com>
  • Loading branch information
hidmic committed Oct 7, 2019
1 parent f23792c commit 7a0309c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rmw_implementation/rmw_implementation/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
def get_available_rmw_implementations():
"""Return a list of all available RMW implementations as registered in the ament index."""
rmw_implementations = ament_index_python.get_resources('rmw_typesupport')
return [name for name, _ in rmw_implementations if name != 'rmw_implementation']
return [name for name in rmw_implementations if name != 'rmw_implementation']


__all__ = [
Expand Down

0 comments on commit 7a0309c

Please sign in to comment.