mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 19:27:45 +00:00
Minor typing tweak in cast (#140911)
This commit is contained in:
parent
adc3f542cf
commit
245f0a1958
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from typing import TYPE_CHECKING, TypedDict
|
from typing import TYPE_CHECKING, NotRequired, TypedDict
|
||||||
|
|
||||||
from homeassistant.util.signal_type import SignalType
|
from homeassistant.util.signal_type import SignalType
|
||||||
|
|
||||||
@ -46,3 +46,4 @@ class HomeAssistantControllerData(TypedDict):
|
|||||||
hass_uuid: str
|
hass_uuid: str
|
||||||
client_id: str | None
|
client_id: str | None
|
||||||
refresh_token: str
|
refresh_token: str
|
||||||
|
app_id: NotRequired[str]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user