Skip to content

Commit

Permalink
[Ontopy] FeederPublisher fix callback
Browse files Browse the repository at this point in the history
  • Loading branch information
sarthou committed Jan 22, 2024
1 parent 6eb7136 commit c65c2de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ontopy/ontologenius/FeederPublisher.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,9 +261,9 @@ def commitCallback(self, data):
if data.data == 'end':
self._updated = True

def _notifCallback(self, data):
def _notifCallback(self, msg):
if not self.user_notif_callback is None:
self.user_notif_callback(data)
self.user_notif_callback(msg.data)

def millis_interval(self, start, end):
diff = end - start
Expand Down

0 comments on commit c65c2de

Please sign in to comment.