fix type annotation

pull/22032/head
Zhanghui Mao 5 years ago
parent 701ec0be20
commit 09168c534f
  1. 4
      src/python/grpcio_tests/tests_aio/unit/server_interceptor_test.py

@ -13,7 +13,7 @@
# limitations under the License. # limitations under the License.
import logging import logging
import unittest import unittest
from typing import Callable, Awaitable from typing import Callable, Awaitable, Any
import grpc import grpc
@ -45,7 +45,7 @@ class _GenericInterceptor(aio.ServerInterceptor):
Callable[[grpc.HandlerCallDetails], Awaitable[grpc. Callable[[grpc.HandlerCallDetails], Awaitable[grpc.
RpcMethodHandler]], RpcMethodHandler]],
grpc.HandlerCallDetails grpc.HandlerCallDetails
], Awaitable[grpc.RpcMethodHandler]]) -> None: ], Any]) -> None:
self._fn = fn self._fn = fn
async def intercept_service( async def intercept_service(

Loading…
Cancel
Save