From 822919295f24b991200e6f97477ece4c33229894 Mon Sep 17 00:00:00 2001 From: Charles Beauville Date: Sun, 7 Jul 2024 14:55:06 +0200 Subject: [PATCH] Fix Run arguments --- src/py/flwr/client/rest_client/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/py/flwr/client/rest_client/connection.py b/src/py/flwr/client/rest_client/connection.py index 5d8da93390f9..4b45d7fc24a5 100644 --- a/src/py/flwr/client/rest_client/connection.py +++ b/src/py/flwr/client/rest_client/connection.py @@ -352,7 +352,7 @@ def get_run(run_id: int) -> Run: # Send the request res = _request(req, GetRunResponse, PATH_GET_RUN) if res is None: - return Run(run_id, "", "", {}) + return Run(run_id, "", "") return Run( run_id,