mirror of
https://github.com/home-assistant/core.git
synced 2025-07-09 22:37:11 +00:00
Fix ESPHome setup errors in beta (#23242)
* Fix ESPHome setup errors in beta * Update requirements_all.txt
This commit is contained in:
parent
8daba68dc1
commit
0c90bfb936
@ -149,7 +149,8 @@ class RuntimeEntryData:
|
|||||||
|
|
||||||
|
|
||||||
def _attr_obj_from_dict(cls, **kwargs):
|
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:
|
async def async_setup(hass: HomeAssistantType, config: ConfigType) -> bool:
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"name": "ESPHome",
|
"name": "ESPHome",
|
||||||
"documentation": "https://www.home-assistant.io/components/esphome",
|
"documentation": "https://www.home-assistant.io/components/esphome",
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"aioesphomeapi==2.0.0"
|
"aioesphomeapi==2.0.1"
|
||||||
],
|
],
|
||||||
"dependencies": [],
|
"dependencies": [],
|
||||||
"codeowners": [
|
"codeowners": [
|
||||||
|
@ -115,7 +115,7 @@ aiobotocore==0.10.2
|
|||||||
aiodns==1.1.1
|
aiodns==1.1.1
|
||||||
|
|
||||||
# homeassistant.components.esphome
|
# homeassistant.components.esphome
|
||||||
aioesphomeapi==2.0.0
|
aioesphomeapi==2.0.1
|
||||||
|
|
||||||
# homeassistant.components.freebox
|
# homeassistant.components.freebox
|
||||||
aiofreepybox==0.0.8
|
aiofreepybox==0.0.8
|
||||||
|
Loading…
x
Reference in New Issue
Block a user