Fix TTS services name ()

pull/46989/head
Bram Kragten 2021-02-24 13:43:24 +01:00 committed by GitHub
parent 17f4c9dd06
commit b0d56970a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
homeassistant/components/tts

View File

@ -209,7 +209,7 @@ async def async_setup(hass, config):
# Register the service description
service_desc = {
CONF_NAME: "Say an TTS message with {p_type}",
CONF_NAME: f"Say an TTS message with {p_type}",
CONF_DESCRIPTION: f"Say something using text-to-speech on a media player with {p_type}.",
CONF_FIELDS: services_dict[SERVICE_SAY][CONF_FIELDS],
}