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

Issues with HA 2024.1.0 #49

Open
kmavrov opened this issue Jan 8, 2024 · 1 comment
Open

Issues with HA 2024.1.0 #49

kmavrov opened this issue Jan 8, 2024 · 1 comment

Comments

@kmavrov
Copy link

kmavrov commented Jan 8, 2024

Integration broke since Home Assistant 2024.1.0.
Add here an argument minor_version=0 and it should be good to go.
Otherwise it throws TypeError: ConfigEntry.__init__() missing 1 required keyword-only argument: 'minor_version'

@Turntable67
Copy link

Turntable67 commented Jan 9, 2024

fixed this bij adding a line to the vacuum.py file

starting at line 55, i added the minor_version=2,

entry = ConfigEntry(
    domain=PLATFORM_NAME,
    data=config,
    version=2,
    minor_version=2,
    title=config[CONF_NAME],
    source=SOURCE_USER,
)

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

2 participants