diff --git a/src/py/flwr/server/server_test.py b/src/py/flwr/server/server_test.py index 091a59bdda35..416403d6e56f 100644 --- a/src/py/flwr/server/server_test.py +++ b/src/py/flwr/server/server_test.py @@ -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: