From 674e698d0c6ed2f9af720068b052b8e10796b7ce Mon Sep 17 00:00:00 2001 From: Chong Shen Ng Date: Mon, 4 Nov 2024 20:39:50 +0000 Subject: [PATCH] Tidy --- src/proto/flwr/proto/clientappio.proto | 2 +- src/py/flwr/proto/clientappio_pb2_grpc.py | 2 +- src/py/flwr/proto/clientappio_pb2_grpc.pyi | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/proto/flwr/proto/clientappio.proto b/src/proto/flwr/proto/clientappio.proto index afc33db020ee..ee492a5acf6a 100644 --- a/src/proto/flwr/proto/clientappio.proto +++ b/src/proto/flwr/proto/clientappio.proto @@ -24,7 +24,7 @@ service ClientAppIo { // Get token rpc GetToken(GetTokenRequest) returns (GetTokenResponse) {} - // Get Message, Context and Fab + // Get Message, Context, and Fab rpc PullClientAppInputs(PullClientAppInputsRequest) returns (PullClientAppInputsResponse) {} diff --git a/src/py/flwr/proto/clientappio_pb2_grpc.py b/src/py/flwr/proto/clientappio_pb2_grpc.py index b254a9c8632d..a2a5d89a85ef 100644 --- a/src/py/flwr/proto/clientappio_pb2_grpc.py +++ b/src/py/flwr/proto/clientappio_pb2_grpc.py @@ -42,7 +42,7 @@ def GetToken(self, request, context): raise NotImplementedError('Method not implemented!') def PullClientAppInputs(self, request, context): - """Get Message, Context and Fab + """Get Message, Context, and Fab """ context.set_code(grpc.StatusCode.UNIMPLEMENTED) context.set_details('Method not implemented!') diff --git a/src/py/flwr/proto/clientappio_pb2_grpc.pyi b/src/py/flwr/proto/clientappio_pb2_grpc.pyi index e6a4016e8bb0..e6bfc4e9776d 100644 --- a/src/py/flwr/proto/clientappio_pb2_grpc.pyi +++ b/src/py/flwr/proto/clientappio_pb2_grpc.pyi @@ -16,7 +16,7 @@ class ClientAppIoStub: PullClientAppInputs: grpc.UnaryUnaryMultiCallable[ flwr.proto.clientappio_pb2.PullClientAppInputsRequest, flwr.proto.clientappio_pb2.PullClientAppInputsResponse] - """Get Message, Context and Fab""" + """Get Message, Context, and Fab""" PushClientAppOutputs: grpc.UnaryUnaryMultiCallable[ flwr.proto.clientappio_pb2.PushClientAppOutputsRequest, @@ -38,7 +38,7 @@ class ClientAppIoServicer(metaclass=abc.ABCMeta): request: flwr.proto.clientappio_pb2.PullClientAppInputsRequest, context: grpc.ServicerContext, ) -> flwr.proto.clientappio_pb2.PullClientAppInputsResponse: - """Get Message, Context and Fab""" + """Get Message, Context, and Fab""" pass @abc.abstractmethod