Skip to content

Commit

Permalink
fixing get_session request, fixes #669
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankJonasmoelle committed Aug 28, 2024
1 parent 297ce3c commit 030fa3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fedn/network/api/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 030fa3c

Please sign in to comment.