mirror of
https://github.com/XiaoMi/ha_xiaomi_home.git
synced 2026-01-16 23:00:43 +08:00
fix: ignore invalid type error
This commit is contained in:
parent
a8359a2b8e
commit
48e8a614a6
@ -690,7 +690,8 @@ class XiaomiMihomeConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|||||||
'display_devices_changed_notify',
|
'display_devices_changed_notify',
|
||||||
default=self._display_devices_changed_notify # type: ignore
|
default=self._display_devices_changed_notify # type: ignore
|
||||||
): cv.multi_select(
|
): cv.multi_select(
|
||||||
self._miot_i18n.translate(key='config.device_state')),
|
self._miot_i18n.translate(
|
||||||
|
key='config.device_state')), # type: ignore
|
||||||
}),
|
}),
|
||||||
last_step=False,
|
last_step=False,
|
||||||
)
|
)
|
||||||
@ -1228,7 +1229,8 @@ class OptionsFlowHandler(config_entries.OptionsFlow):
|
|||||||
'display_devices_changed_notify',
|
'display_devices_changed_notify',
|
||||||
default=self._display_devs_notify # type: ignore
|
default=self._display_devs_notify # type: ignore
|
||||||
): cv.multi_select(
|
): cv.multi_select(
|
||||||
self._miot_i18n.translate('config.device_state')),
|
self._miot_i18n.translate(
|
||||||
|
'config.device_state')), # type: ignore
|
||||||
vol.Required(
|
vol.Required(
|
||||||
'update_lan_ctrl_config',
|
'update_lan_ctrl_config',
|
||||||
default=self._opt_lan_ctrl_cfg # type: ignore
|
default=self._opt_lan_ctrl_cfg # type: ignore
|
||||||
@ -1753,7 +1755,7 @@ class OptionsFlowHandler(config_entries.OptionsFlow):
|
|||||||
disable_text = self._miot_i18n.translate(
|
disable_text = self._miot_i18n.translate(
|
||||||
key='config.option_status.disable')
|
key='config.option_status.disable')
|
||||||
trans_devs_display: dict = self._miot_i18n.translate(
|
trans_devs_display: dict = self._miot_i18n.translate(
|
||||||
key='config.device_state')
|
key='config.device_state') # type: ignore
|
||||||
return self.async_show_form(
|
return self.async_show_form(
|
||||||
step_id='config_confirm',
|
step_id='config_confirm',
|
||||||
data_schema=vol.Schema({
|
data_schema=vol.Schema({
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user