diff --git a/custom_components/tibber_prices/config_flow.py b/custom_components/tibber_prices/config_flow.py index 7de93d5..f5b4654 100644 --- a/custom_components/tibber_prices/config_flow.py +++ b/custom_components/tibber_prices/config_flow.py @@ -25,7 +25,7 @@ from .config_flow_handlers.schemas import ( from .config_flow_handlers.subentry_flow import ( TibberPricesSubentryFlowHandler as SubentryFlowHandler, ) -from .config_flow_handlers.user_flow import TibberPricesFlowHandler as ConfigFlow +from .config_flow_handlers.user_flow import TibberPricesConfigFlowHandler as ConfigFlow from .config_flow_handlers.validators import ( TibberPricesCannotConnectError, TibberPricesInvalidAuthError, diff --git a/custom_components/tibber_prices/config_flow_handlers/__init__.py b/custom_components/tibber_prices/config_flow_handlers/__init__.py index 68ebe0b..72837a3 100644 --- a/custom_components/tibber_prices/config_flow_handlers/__init__.py +++ b/custom_components/tibber_prices/config_flow_handlers/__init__.py @@ -39,7 +39,7 @@ from custom_components.tibber_prices.config_flow_handlers.subentry_flow import ( TibberPricesSubentryFlowHandler, ) from custom_components.tibber_prices.config_flow_handlers.user_flow import ( - TibberPricesFlowHandler, + TibberPricesConfigFlowHandler, ) from custom_components.tibber_prices.config_flow_handlers.validators import ( TibberPricesCannotConnectError, @@ -49,7 +49,7 @@ from custom_components.tibber_prices.config_flow_handlers.validators import ( __all__ = [ "TibberPricesCannotConnectError", - "TibberPricesFlowHandler", + "TibberPricesConfigFlowHandler", "TibberPricesInvalidAuthError", "TibberPricesOptionsFlowHandler", "TibberPricesSubentryFlowHandler",