Fix: GoogleSTTService's set_languages method should be set_language to satisfy base class requirement

This commit is contained in:
Mark Backman
2025-03-07 12:47:56 -05:00
parent 20ea073398
commit 44b3e6cefa

View File

@@ -1727,7 +1727,7 @@ class GoogleSTTService(STTService):
await self._disconnect()
await self._connect()
async def set_languages(self, languages: List[Language]):
async def set_language(self, languages: List[Language]):
"""Update the service's recognition languages.
Args: