fix: fix broken imports

This commit is contained in:
Xavier Morel
2025-04-01 09:17:40 +02:00
parent fadb192dff
commit 8e900002ef
3 changed files with 6 additions and 8 deletions

View File

@@ -67,8 +67,8 @@ class EcocitoConfigFlow(ConfigFlow, domain=DOMAIN):
@staticmethod
@callback
def async_get_options_flow(
config_entry: ConfigEntry
entry: ConfigEntry
) -> OptionsFlow:
"""Return the options flow."""
from .options_flow import EcocitoOptionsFlowHandler
return EcocitoOptionsFlowHandler(config_entry)
return EcocitoOptionsFlowHandler(entry)