updated invocation_metadata return type hint

pull/36894/head
sreenithi 6 months ago
parent fbd8ebe7cd
commit 7d3a047309
No known key found for this signature in database
  1. 3
      src/python/grpcio/grpc/aio/_base_server.py

@ -18,7 +18,6 @@ from typing import Generic, Iterable, Mapping, NoReturn, Optional, Sequence
import grpc import grpc
from ._metadata import Metadata
from ._typing import DoneCallbackType from ._typing import DoneCallbackType
from ._typing import MetadataType from ._typing import MetadataType
from ._typing import RequestType from ._typing import RequestType
@ -225,7 +224,7 @@ class ServicerContext(Generic[RequestType, ResponseType], abc.ABC):
""" """
@abc.abstractmethod @abc.abstractmethod
def invocation_metadata(self) -> Optional[Metadata]: def invocation_metadata(self) -> Optional[MetadataType]:
"""Accesses the metadata sent by the client. """Accesses the metadata sent by the client.
Returns: Returns:

Loading…
Cancel
Save