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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
v1.9.1 - 2026-02-16
Fixed
Critical fix for TypeError when accessing integration options. The async_get_options_flow() method was incorrectly passing config_entry as an argument to OptionsFlowHandler() constructor, but the parent class config_entries.OptionsFlow provides config_entry as a property, not via __init__. This caused a TypeError: OptionsFlowHandler() takes no arguments when users tried to access the integration's options flow.
Removed the config_entry argument from OptionsFlowHandler() instantiation in async_get_options_flow()
The config_entry property remains accessible throughout the options flow lifecycle via the parent class's property
This completes the fix started in v1.8.11 and ensures the v1.9.0 rewrite fully follows Home Assistant's OptionsFlow pattern