From b228b5d0814fb2f3af4bccee47d8a08e5d875d26 Mon Sep 17 00:00:00 2001 From: Charles Beauville Date: Sun, 7 Jul 2024 15:03:31 +0200 Subject: [PATCH] Remove unused argument --- src/py/flwr/client/app.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/py/flwr/client/app.py b/src/py/flwr/client/app.py index e00dcd4f174a..1bc02362eacf 100644 --- a/src/py/flwr/client/app.py +++ b/src/py/flwr/client/app.py @@ -194,7 +194,6 @@ def _start_client_internal( max_retries: Optional[int] = None, max_wait_time: Optional[float] = None, partition_id: Optional[int] = None, - flwr_dir: Optional[Path] = None, ) -> None: """Start a Flower client node which connects to a Flower server. @@ -241,13 +240,6 @@ class `flwr.client.Client` (default: None) partition_id: Optional[int] (default: None) The data partition index associated with this node. Better suited for prototyping purposes. - flwr_dir: Optional[Path] (default: None) - The path containing installed Flower Apps. - By default, this value is equal to: - - - `$FLWR_HOME/` if `$FLWR_HOME` is defined - - `$XDG_DATA_HOME/.flwr/` if `$XDG_DATA_HOME` is defined - - `$HOME/.flwr/` in all other cases """ if insecure is None: insecure = root_certificates is None