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