From 973269b046317da627c3254550a4855b6363eeea Mon Sep 17 00:00:00 2001 From: Niklas Date: Mon, 18 Mar 2024 13:48:54 +0100 Subject: [PATCH] linter fix --- fedn/fedn/network/api/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fedn/fedn/network/api/client.py b/fedn/fedn/network/api/client.py index 5fb38c402..6daad13f9 100644 --- a/fedn/fedn/network/api/client.py +++ b/fedn/fedn/network/api/client.py @@ -677,7 +677,7 @@ def get_statuses(self, session_id: str = None, event_type: str = None, sender_na _headers = self.headers.copy() if n_max: - _headers['X-Limit'] = str(n_max) + _headers['X-Limit'] = str(n_max) response = requests.get(self._get_url_api_v1('statuses'), params=_params, verify=self.verify, headers=_headers)