-
-
Notifications
You must be signed in to change notification settings - Fork 7
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
[BUG] Integration not working in HA 2023.9.0 Setup failed for custom integration ledfx: Unable to import component: cannot import name 'DeviceEntryType' from 'homeassistant.helpers.entity' #25
Comments
Same here! |
This is also preventing the integration from being uninstalled.
|
Also impossible to delete the integration. |
Same here. I resolved this issue by editing updater.py - removing the line importing DeviceEntryType and changing entry_type to = None. Seems to work but need to test further. |
Thanks, that seems to work! Any problems after? |
I ended up, instead of changing entry_type to none, I imported DeviceEntryType from device_registry helper (not entity). But unfortunately I'm having issues. My new issue is: AttributeError: 'LedFxLight' object has no attribute '_ActionType.DEVICE_on'. Btw- I get this error both ways |
Have found the source of this error. I believe changing to the following code resolves. However I'm still receiving the same error as @seancmalloy when trying to undertake actions. Still investigating this - could be related to a separate deprecation or issue. Replace:
with
in updater.py |
Describe the bug
The Integration will not work anymore due to the following error:
Please complete the following information:
The text was updated successfully, but these errors were encountered: