Import Generator from collections.abc (1) (#120914)

This commit is contained in:
Marc Mueller 2024-07-01 11:51:51 +02:00 committed by GitHub
parent aa5ebaf613
commit ca55986057
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
44 changed files with 62 additions and 76 deletions

View file

@ -3,7 +3,7 @@
from __future__ import annotations
import asyncio
from collections.abc import Callable, Mapping, Sequence
from collections.abc import AsyncGenerator, Callable, Mapping, Sequence
from contextlib import asynccontextmanager
from contextvars import ContextVar
from copy import copy
@ -16,7 +16,6 @@ from types import MappingProxyType
from typing import Any, Literal, TypedDict, cast
import async_interrupt
from typing_extensions import AsyncGenerator
import voluptuous as vol
from homeassistant import exceptions