Remove blocking I/O from the event loop (#28305)

This commit is contained in:
Sebastian Muszynski 2019-10-29 01:44:26 +01:00 committed by Teemu R
parent 0e4331e922
commit a0f764cf6d
5 changed files with 5 additions and 5 deletions

View file

@ -445,7 +445,7 @@ async def async_setup_platform(hass, config, async_add_entities, discovery_info=
if model is None:
try:
miio_device = Device(host, token)
device_info = miio_device.info()
device_info = await hass.async_add_executor_job(miio_device.info)
model = device_info.model
unique_id = f"{model}-{device_info.mac_address}"
_LOGGER.info(