Always import Protocol from typing in stubs (#6617)

This commit is contained in:
Stephen Rosen
2021-12-17 07:12:22 -05:00
committed by GitHub
parent 2ad00c9664
commit df0a724c0f
9 changed files with 12 additions and 17 deletions

View File

@@ -1,7 +1,6 @@
import sys
import types
from typing import Any, Callable, Generic, Iterable, Mapping, Tuple, Type, TypeVar, overload
from typing_extensions import Protocol
from typing import Any, Callable, Generic, Iterable, Mapping, Protocol, Tuple, Type, TypeVar, overload
if sys.version_info >= (3, 9):
from types import GenericAlias