Skip to content

Commit

Permalink
Adjust type hints in zwave_js config flow (#127104)
Browse files Browse the repository at this point in the history
  • Loading branch information
epenet authored Sep 30, 2024
1 parent edcb4ec commit dcb6c9a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion homeassistant/components/zwave_js/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,11 +346,13 @@ class ZWaveJSConfigFlow(BaseZwaveJSFlow, ConfigFlow, domain=DOMAIN):

VERSION = 1

_title: str
unique_id: str

def __init__(self) -> None:
"""Set up flow instance."""
super().__init__()
self.use_addon = False
self._title: str | None = None
self._usb_discovery = False

@property
Expand Down

0 comments on commit dcb6c9a

Please sign in to comment.