From b8ece84c6ecf4bf74119371f241a4499d675b7e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Thu, 26 Sep 2024 10:39:00 -0700 Subject: [PATCH] services: super should be super() --- src/pipecat/services/ai_services.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/services/ai_services.py b/src/pipecat/services/ai_services.py index 21ef8dfca..16280b024 100644 --- a/src/pipecat/services/ai_services.py +++ b/src/pipecat/services/ai_services.py @@ -260,7 +260,7 @@ class AsyncTTSService(TTSService): pass async def say(self, text: str): - await super.say(text) + await super().say(text) await self.flush_audio() async def start(self, frame: StartFrame):