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

@@ -11,11 +11,12 @@ from typing import (
Generic,
Iterator,
Optional,
Protocol,
Type,
TypeVar,
overload,
)
from typing_extensions import ParamSpec, Protocol
from typing_extensions import ParamSpec
AbstractContextManager = ContextManager
if sys.version_info >= (3, 7):