Skip to content

Commit

Permalink
Fixing typo in parameter_service (undefined reference to method in Pa…
Browse files Browse the repository at this point in the history
…rameters).

Signed-off-by: Juan Ignacio Ubeira <jubeira@ekumenlabs.com>
  • Loading branch information
Juan Ignacio Ubeira committed Apr 30, 2019
1 parent d418adc commit 61845e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rclpy/rclpy/parameter_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def _get_parameters_callback(self, request, response):

def _get_parameter_types_callback(self, request, response):
for name in request.names:
response.types.append(self._node.get_parameter(name).get_parameter_type())
response.types.append(self._node.get_parameter(name).type_)
return response

def _list_parameters_callback(self, request, response):
Expand Down

0 comments on commit 61845e3

Please sign in to comment.