Skip to content

Commit

Permalink
Fix ASR NameError
Browse files Browse the repository at this point in the history
  • Loading branch information
derkmed committed May 28, 2024
1 parent 6e28914 commit 65394a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ros/angel_system_nodes/angel_system_nodes/audio/asr.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def __init__(self):
self.subscription = self.create_subscription(
HeadsetAudioData, self._audio_topic, self.listener_callback, 1
)
self._publisher = self.create_publisher(Utterance, self._utterances_topic, 1)
self._publisher = self.create_publisher(DialogueUtterance, self._utterances_topic, 1)

self.audio_stream = []
self.t = threading.Thread()
Expand Down

0 comments on commit 65394a6

Please sign in to comment.