services: super should be super()

This commit is contained in:
Aleix Conchillo Flaqué
2024-09-26 10:39:00 -07:00
parent a018112a13
commit b8ece84c6e

View File

@@ -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):