From 384838147adfece71b273c5010d6e770b7d64a5a Mon Sep 17 00:00:00 2001 From: padillamt Date: Tue, 15 Jul 2025 16:56:18 -0700 Subject: [PATCH] inworld: removed unnecessary code from stop() and cancel() --- src/pipecat/services/inworld/tts.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pipecat/services/inworld/tts.py b/src/pipecat/services/inworld/tts.py index b938fb2a0..b05134a5d 100644 --- a/src/pipecat/services/inworld/tts.py +++ b/src/pipecat/services/inworld/tts.py @@ -173,7 +173,6 @@ class InworldTTSService(TTSService): frame: The end frame. """ await super().stop(frame) - # await self._client.close() async def cancel(self, frame: CancelFrame): """Cancel the Inworld HTTP TTS service. @@ -182,7 +181,6 @@ class InworldTTSService(TTSService): frame: The cancel frame. """ await super().cancel(frame) - # await self._client.close() @traced_tts async def run_tts(self, text: str) -> AsyncGenerator[Frame, None]: