diff --git a/custom_components/babybuddy/config_flow.py b/custom_components/babybuddy/config_flow.py index cc548c6..790eb58 100644 --- a/custom_components/babybuddy/config_flow.py +++ b/custom_components/babybuddy/config_flow.py @@ -145,11 +145,12 @@ async def async_step_reauth_confirm( ) -@dataclass class BabyBuddyOptionsFlowHandler(config_entries.OptionsFlow): """Handle babybuddy options.""" - config_entry: config_entries.ConfigEntry + def __init__(self, config_entry: config_entries.ConfigEntry) -> None: + """Init object.""" + self.config_entry = config_entry async def async_step_init( self, user_input: dict[str, Any] | None = None