From 90d38f91e75745f8d1cb7e72f141b9a1a842754b Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Fri, 13 Sep 2024 03:42:45 +0900 Subject: [PATCH] chore: update tts_clients.py typo (#221) --- src/rai_tts/rai_tts/tts_clients.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rai_tts/rai_tts/tts_clients.py b/src/rai_tts/rai_tts/tts_clients.py index 8ab2dd4d6..21974df79 100644 --- a/src/rai_tts/rai_tts/tts_clients.py +++ b/src/rai_tts/rai_tts/tts_clients.py @@ -62,7 +62,7 @@ def synthesize_speech_to_file(self, text: str) -> str: audio_data = b"".join(response) return self.save_audio_to_file(audio_data, suffix=".mp3") except Exception as e: - logger.warn(f"Error ocurred during sythesizing speech: {e}.") # type: ignore + logger.warn(f"Error occurred during sythesizing speech: {e}.") # type: ignore tries += 1 audio_data = b"".join(response) return self.save_audio_to_file(audio_data, suffix=".mp3")