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]: