From e8bdd3b0632aa9f75f2a78672d337bbd3563b4c0 Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Thu, 26 Oct 2023 12:28:04 -0700 Subject: [PATCH] Cleanup temporary destination validation override --- neon_speech/service.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/neon_speech/service.py b/neon_speech/service.py index f4cd8b8..769842b 100644 --- a/neon_speech/service.py +++ b/neon_speech/service.py @@ -139,14 +139,9 @@ def _validate_message_context(self, message: Message, native_sources=None): log_deprecation(f"Adding audio to destination context for " f"{message.msg_type}", "5.0.0") message.context['destination'].append('audio') - LOG.debug(f"Checking sources {native_sources} for {message.context}") return OVOSDinkumVoiceService._validate_message_context(self, message, native_sources) - def _handle_listen(self, message: Message): - LOG.debug(f"handle listen context={message.context}") - OVOSDinkumVoiceService._handle_listen(self, message) - def run(self): if self.config.get('listener', {}).get('enable_voice_loop', True): OVOSDinkumVoiceService.run(self)