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,7 @@
import sys
from socket import socket
from typing import Any, Mapping, Type
from typing_extensions import Literal, Protocol
from typing import Any, Mapping, Protocol, Type
from typing_extensions import Literal
from . import base_events, constants, events, futures, streams, transports