Skip to content

Commit

Permalink
Fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesbvll committed Jun 13, 2024
1 parent 226d110 commit 1fa1cea
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/py/flwr/superexec/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ def _parse_args_run_superexec() -> argparse.ArgumentParser:
parser.add_argument(
"executor",
help="For example: `deployment:exec` or `project.package.module:wrapper.exec`.",
required=True,
)
parser.add_argument(
"--address",
Expand Down Expand Up @@ -157,7 +156,7 @@ def _get_exec_plugin(
args: argparse.Namespace,
) -> Executor:
"""Get the load_client_app_fn function."""
exec_plugin_dir = args.dir
exec_plugin_dir = args.executor_dir
if exec_plugin_dir is not None:
sys.path.insert(0, exec_plugin_dir)

Expand Down

0 comments on commit 1fa1cea

Please sign in to comment.