diff --git a/fedn/network/api/client.py b/fedn/network/api/client.py index d26be03ff..e7408ba3a 100644 --- a/fedn/network/api/client.py +++ b/fedn/network/api/client.py @@ -497,7 +497,7 @@ def get_session(self, id: str): :return: Session. :rtype: dict """ - response = requests.get(self._get_url_api_v1(f"sessions/{id}"), self.verify, headers=self.headers) + response = requests.get(self._get_url_api_v1(f"sessions/{id}"), verify=self.verify, headers=self.headers) _json = response.json()