mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 10:59:40 +00:00
Update typing (1) (#63922)
This commit is contained in:
@@ -9,7 +9,7 @@ from functools import partial
|
||||
import itertools
|
||||
import logging
|
||||
from types import MappingProxyType
|
||||
from typing import Any, Dict, TypedDict, Union, cast
|
||||
from typing import Any, TypedDict, Union, cast
|
||||
|
||||
import async_timeout
|
||||
import voluptuous as vol
|
||||
@@ -915,7 +915,7 @@ async def _async_stop_scripts_at_shutdown(hass, event):
|
||||
)
|
||||
|
||||
|
||||
_VarsType = Union[Dict[str, Any], MappingProxyType]
|
||||
_VarsType = Union[dict[str, Any], MappingProxyType]
|
||||
|
||||
|
||||
def _referenced_extract_ids(data: dict[str, Any], key: str, found: set[str]) -> None:
|
||||
|
||||
Reference in New Issue
Block a user