Fix ESPHome setup errors in beta (#23242)

* Fix ESPHome setup errors in beta

* Update requirements_all.txt
pull/23353/head
Otto Winter 2019-04-22 21:13:21 +02:00 committed by Paulus Schoutsen
parent a2565ad3b4
commit 85ac85c959
3 changed files with 4 additions and 3 deletions

View File

@ -149,7 +149,8 @@ class RuntimeEntryData:
def _attr_obj_from_dict(cls, **kwargs):
return cls(**{key: kwargs[key] for key in attr.fields_dict(cls)})
return cls(**{key: kwargs[key] for key in attr.fields_dict(cls)
if key in kwargs})
async def async_setup(hass: HomeAssistantType, config: ConfigType) -> bool:

View File

@ -3,7 +3,7 @@
"name": "ESPHome",
"documentation": "https://www.home-assistant.io/components/esphome",
"requirements": [
"aioesphomeapi==2.0.0"
"aioesphomeapi==2.0.1"
],
"dependencies": [],
"codeowners": [

View File

@ -112,7 +112,7 @@ aiobotocore==0.10.2
aiodns==1.1.1
# homeassistant.components.esphome
aioesphomeapi==2.0.0
aioesphomeapi==2.0.1
# homeassistant.components.freebox
aiofreepybox==0.0.8