Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

After upgrade to Home Assistant 2023.8.4 Ecowitt integration failed to load #110

Open
PTomlinson1 opened this issue Aug 31, 2023 · 0 comments

Comments

@PTomlinson1
Copy link

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

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,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant