Adjust type hints in zwave_js config flow (#127104)

This commit is contained in:
epenet 2024-09-30 21:42:16 +02:00 committed by GitHub
parent edcb4eca22
commit dcb6c9a133
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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