Adjust type hints in zwave_js config flow (#127104)
This commit is contained in:
parent
edcb4eca22
commit
dcb6c9a133
1 changed files with 3 additions and 1 deletions
|
@ -346,11 +346,13 @@ class ZWaveJSConfigFlow(BaseZwaveJSFlow, ConfigFlow, domain=DOMAIN):
|
||||||
|
|
||||||
VERSION = 1
|
VERSION = 1
|
||||||
|
|
||||||
|
_title: str
|
||||||
|
unique_id: str
|
||||||
|
|
||||||
def __init__(self) -> None:
|
def __init__(self) -> None:
|
||||||
"""Set up flow instance."""
|
"""Set up flow instance."""
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.use_addon = False
|
self.use_addon = False
|
||||||
self._title: str | None = None
|
|
||||||
self._usb_discovery = False
|
self._usb_discovery = False
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
Loading…
Add table
Reference in a new issue