mirror of
https://github.com/home-assistant/core.git
synced 2025-07-15 17:27:10 +00:00
Fix incorrect type hint in zwave_js config flow (#127158)
This commit is contained in:
parent
805c717013
commit
0d9f2aee70
@ -347,7 +347,6 @@ class ZWaveJSConfigFlow(BaseZwaveJSFlow, ConfigFlow, domain=DOMAIN):
|
||||
VERSION = 1
|
||||
|
||||
_title: str
|
||||
unique_id: str
|
||||
|
||||
def __init__(self) -> None:
|
||||
"""Set up flow instance."""
|
||||
@ -396,6 +395,7 @@ class ZWaveJSConfigFlow(BaseZwaveJSFlow, ConfigFlow, domain=DOMAIN):
|
||||
return await self.async_step_manual({CONF_URL: self.ws_address})
|
||||
|
||||
assert self.ws_address
|
||||
assert self.unique_id
|
||||
return self.async_show_form(
|
||||
step_id="zeroconf_confirm",
|
||||
description_placeholders={
|
||||
|
Loading…
x
Reference in New Issue
Block a user