Upgrade mutagen to 1.41.1 (#16361)
This commit is contained in:
parent
15ad82b9bd
commit
1d12c7b0e7
2 changed files with 7 additions and 7 deletions
|
@ -29,7 +29,7 @@ from homeassistant.helpers import config_per_platform
|
|||
import homeassistant.helpers.config_validation as cv
|
||||
from homeassistant.setup import async_prepare_setup_platform
|
||||
|
||||
REQUIREMENTS = ['mutagen==1.41.0']
|
||||
REQUIREMENTS = ['mutagen==1.41.1']
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
@ -69,8 +69,8 @@ PLATFORM_SCHEMA = cv.PLATFORM_SCHEMA.extend({
|
|||
|
||||
SCHEMA_SERVICE_SAY = vol.Schema({
|
||||
vol.Required(ATTR_MESSAGE): cv.string,
|
||||
vol.Optional(ATTR_ENTITY_ID): cv.entity_ids,
|
||||
vol.Optional(ATTR_CACHE): cv.boolean,
|
||||
vol.Optional(ATTR_ENTITY_ID): cv.entity_ids,
|
||||
vol.Optional(ATTR_LANGUAGE): cv.string,
|
||||
vol.Optional(ATTR_OPTIONS): dict,
|
||||
})
|
||||
|
@ -117,7 +117,7 @@ async def async_setup(hass, config):
|
|||
|
||||
tts.async_register_engine(p_type, provider, p_config)
|
||||
except Exception: # pylint: disable=broad-except
|
||||
_LOGGER.exception("Error setting up platform %s", p_type)
|
||||
_LOGGER.exception("Error setting up platform: %s", p_type)
|
||||
return
|
||||
|
||||
async def async_say_handle(service):
|
||||
|
@ -134,7 +134,7 @@ async def async_setup(hass, config):
|
|||
options=options
|
||||
)
|
||||
except HomeAssistantError as err:
|
||||
_LOGGER.error("Error on init tts: %s", err)
|
||||
_LOGGER.error("Error on init TTS: %s", err)
|
||||
return
|
||||
|
||||
data = {
|
||||
|
@ -302,8 +302,8 @@ class SpeechManager:
|
|||
return "{}/api/tts_proxy/{}".format(
|
||||
self.hass.config.api.base_url, filename)
|
||||
|
||||
async def async_get_tts_audio(self, engine, key, message, cache, language,
|
||||
options):
|
||||
async def async_get_tts_audio(
|
||||
self, engine, key, message, cache, language, options):
|
||||
"""Receive TTS and store for view in cache.
|
||||
|
||||
This method is a coroutine.
|
||||
|
|
|
@ -585,7 +585,7 @@ mitemp_bt==0.0.1
|
|||
motorparts==1.0.2
|
||||
|
||||
# homeassistant.components.tts
|
||||
mutagen==1.41.0
|
||||
mutagen==1.41.1
|
||||
|
||||
# homeassistant.components.mychevy
|
||||
mychevy==0.4.0
|
||||
|
|
Loading…
Add table
Reference in a new issue