Skip to content

Commit

Permalink
Format docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesbvll committed Jan 17, 2024
1 parent e0bc696 commit 8d628ac
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/py/flwr/server/server_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,15 @@ class SuccessClient(ClientProxy):
def get_properties(
self, ins: GetPropertiesIns, timeout: Optional[float]
) -> GetPropertiesRes:
"""Raise a NotImplementedError because this method is not expected to be called."""
"""Raise a NotImplementedError because this method is not expected to be
called."""
raise NotImplementedError()

def get_parameters(
self, ins: GetParametersIns, timeout: Optional[float]
) -> GetParametersRes:
"""Raise a NotImplementedError because this method is not expected to be called."""
"""Raise a NotImplementedError because this method is not expected to be
called."""
raise NotImplementedError()

def fit(self, ins: FitIns, timeout: Optional[float]) -> FitRes:
Expand Down

0 comments on commit 8d628ac

Please sign in to comment.