Skip to content

Commit

Permalink
[ontopy] fix conversionClient
Browse files Browse the repository at this point in the history
  • Loading branch information
sarthou committed Jan 15, 2024
1 parent 4cf283a commit bfc415a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ontopy/ontologenius/ConversionClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,12 @@
from ontologenius.srv._ontologenius_conversion import OntologeniusConversion_Request as OntologeniusConversionRequest

class ConversionClient:


def __init__(self, name):
"""Constructs a ROS client linked to the service name(str)."""
self._name = 'ontologenius/conversion'
if name != '':
self._name = self._name + name
self._name = self._name + "/" + name
self._verbose = False
self._client = Ontoros.createService(self._name, OntologeniusConversion)

Expand Down

0 comments on commit bfc415a

Please sign in to comment.