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

@ -2,12 +2,10 @@
from __future__ import annotations
from collections.abc import Callable, Sequence
from collections.abc import Callable, Generator, Sequence
from dataclasses import dataclass
from typing import TYPE_CHECKING, Any
from typing_extensions import Generator
from .util.event_type import EventType
if TYPE_CHECKING: