Skip to content

Commit

Permalink
Tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
chongshenng committed Nov 4, 2024
1 parent cf213bc commit 674e698
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/proto/flwr/proto/clientappio.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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) {}

Expand Down
2 changes: 1 addition & 1 deletion src/py/flwr/proto/clientappio_pb2_grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -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!')
Expand Down
4 changes: 2 additions & 2 deletions src/py/flwr/proto/clientappio_pb2_grpc.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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
Expand Down

0 comments on commit 674e698

Please sign in to comment.