Эх сурвалжийг харах

Revert "Remove circular dependency"

This reverts commit dc2b02aad15c66c52e07abe5fdc85be92e13b867.
Lidi Zheng 5 жил өмнө
parent
commit
3a6d73f808

+ 3 - 1
src/python/grpcio_status/grpc_status/_async.py

@@ -13,12 +13,14 @@
 # limitations under the License.
 # limitations under the License.
 """Reference implementation for status mapping in gRPC Python."""
 """Reference implementation for status mapping in gRPC Python."""
 
 
+from grpc.experimental import aio
+
 from google.rpc import status_pb2
 from google.rpc import status_pb2
 
 
 from ._common import code_to_grpc_status_code, GRPC_DETAILS_METADATA_KEY
 from ._common import code_to_grpc_status_code, GRPC_DETAILS_METADATA_KEY
 
 
 
 
-async def from_call(call):
+async def from_call(call: aio.Call):
     """Returns a google.rpc.status.Status message from a given grpc.aio.Call.
     """Returns a google.rpc.status.Status message from a given grpc.aio.Call.
 
 
     This is an EXPERIMENTAL API.
     This is an EXPERIMENTAL API.