You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading my HA to 2023.8.4 the Ecowitt integration would not load. I failed to capture the full error message, but it related to the importing of async_get_registry.
After having similar issues with other integrations I have been able to get the integration to load by changing the following in init.py
from homeassistant.helpers.entity import Entity
from homeassistant.helpers.entity_registry import (
async_get_registry as async_get_entity_registry,
)
to
from homeassistant.helpers.entity import Entity
from homeassistant.helpers.entity_registry import (
async_get as async_get_entity_registry,
)
The text was updated successfully, but these errors were encountered:
Version of the custom_component
0.7
Describe the bug
After upgrading my HA to 2023.8.4 the Ecowitt integration would not load. I failed to capture the full error message, but it related to the importing of async_get_registry.
After having similar issues with other integrations I have been able to get the integration to load by changing the following in init.py
to
The text was updated successfully, but these errors were encountered: