Improve type hints in starline config flow
This commit is contained in:
parent
a9f468509b
commit
96c5fe910e
1 changed files with 1 additions and 1 deletions
|
@ -34,6 +34,7 @@ class StarlineFlowHandler(ConfigFlow, domain=DOMAIN):
|
||||||
_app_code: str
|
_app_code: str
|
||||||
_app_token: str
|
_app_token: str
|
||||||
_captcha_image: str
|
_captcha_image: str
|
||||||
|
_phone_number: str
|
||||||
|
|
||||||
def __init__(self) -> None:
|
def __init__(self) -> None:
|
||||||
"""Initialize flow."""
|
"""Initialize flow."""
|
||||||
|
@ -49,7 +50,6 @@ class StarlineFlowHandler(ConfigFlow, domain=DOMAIN):
|
||||||
self._slnet_token_expires = None
|
self._slnet_token_expires = None
|
||||||
self._captcha_sid: str | None = None
|
self._captcha_sid: str | None = None
|
||||||
self._captcha_code: str | None = None
|
self._captcha_code: str | None = None
|
||||||
self._phone_number = None
|
|
||||||
|
|
||||||
self._auth = StarlineAuth()
|
self._auth = StarlineAuth()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue