Update typing (1) (#63922)

This commit is contained in:
Marc Mueller
2022-01-11 21:26:03 +01:00
committed by GitHub
parent 4e2cd1bec0
commit d3b7bd25ef
11 changed files with 30 additions and 30 deletions

View File

@@ -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: