diff --git a/docs/core/entity/tts.md b/docs/core/entity/tts.md index 5d190d08..85d6e1ca 100644 --- a/docs/core/entity/tts.md +++ b/docs/core/entity/tts.md @@ -44,12 +44,12 @@ class MyTextToSpeechEntity(TextToSpeechEntity): """Represent a Text To Speech entity.""" def get_tts_audio( - self, message: str, language: str, options: dict[str, Any] | None = None + self, message: str, language: str, options: dict[str, Any] ) -> TtsAudioType: """Load tts audio file from the engine.""" async def async_get_tts_audio( - self, message: str, language: str, options: dict[str, Any] | None = None + self, message: str, language: str, options: dict[str, Any] ) -> TtsAudioType: """Load tts audio file from the engine.""" ```