File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
homeassistant/components/huawei_lte Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 6363_LOGGER = logging .getLogger (__name__ )
6464
6565
66- class ConfigFlowHandler (ConfigFlow , domain = DOMAIN ):
67- """Handle Huawei LTE config flow."""
66+ class HuaweiLteConfigFlow (ConfigFlow , domain = DOMAIN ):
67+ """Huawei LTE config flow."""
6868
6969 VERSION = 3
7070
@@ -75,9 +75,9 @@ class ConfigFlowHandler(ConfigFlow, domain=DOMAIN):
7575 @callback
7676 def async_get_options_flow (
7777 config_entry : ConfigEntry ,
78- ) -> OptionsFlowHandler :
78+ ) -> HuaweiLteOptionsFlow :
7979 """Get options flow."""
80- return OptionsFlowHandler ()
80+ return HuaweiLteOptionsFlow ()
8181
8282 async def _async_show_user_form (
8383 self ,
@@ -354,7 +354,7 @@ async def async_step_reauth_confirm(
354354 return self .async_update_reload_and_abort (entry , data = new_data )
355355
356356
357- class OptionsFlowHandler (OptionsFlow ):
357+ class HuaweiLteOptionsFlow (OptionsFlow ):
358358 """Huawei LTE options flow."""
359359
360360 async def async_step_init (
You can’t perform that action at this time.
0 commit comments