Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stubs/grpcio/METADATA.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "~= 1.83.0"
version = "~=1.84.0"
upstream-repository = "https://github.com/grpc/grpc"
partial-stub = true

Expand Down
3 changes: 2 additions & 1 deletion stubs/grpcio/grpc/aio/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ class InterceptedUnaryUnaryCall(_InterceptedCall[_TRequest, _TResponse], metacla
request_serializer: _Serializer[_TRequest],
response_deserializer: _Deserializer[_TResponse],
loop: asyncio.AbstractEventLoop,
registered_call_handle: int = 0,
) -> None: ...

# pylint: disable=too-many-arguments
Expand Down Expand Up @@ -513,7 +514,7 @@ _T = TypeVar("_T")
class Metadata(Collection[_MetadatumType]):
def __init__(self, *args: tuple[_MetadataKey, _MetadataValue]) -> None: ...
@classmethod
def from_tuple(cls, raw_metadata: tuple[_MetadataKey, _MetadataValue]) -> Metadata: ...
def from_tuple(cls, raw_metadata: Iterable[_MetadatumType]) -> Self: ...
def add(self, key: _MetadataKey, value: _MetadataValue) -> None: ...
def __len__(self) -> int: ...
def __getitem__(self, key: _MetadataKey) -> _MetadataValue: ...
Expand Down
Loading