mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 21:27:38 +00:00
Improve type hints in evohome (#87266)
This commit is contained in:
parent
e77e49a87a
commit
5958e7c515
@ -405,11 +405,11 @@ class EvoBroker:
|
|||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
hass,
|
hass: HomeAssistant,
|
||||||
client: evohomeasync2.EvohomeClient,
|
client: evohomeasync2.EvohomeClient,
|
||||||
client_v1: evohomeasync.EvohomeClient | None,
|
client_v1: evohomeasync.EvohomeClient | None,
|
||||||
store: Store[dict[str, Any]],
|
store: Store[dict[str, Any]],
|
||||||
params,
|
params: ConfigType,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Initialize the evohome client and its data structure."""
|
"""Initialize the evohome client and its data structure."""
|
||||||
self.hass = hass
|
self.hass = hass
|
||||||
|
Loading…
x
Reference in New Issue
Block a user