Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mihran113 committed Sep 23, 2024
1 parent 0c511d8 commit 9cf88f9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion aim/ext/transport/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,9 @@ def _run_read_instructions(self, queue_id, resource, method, args):
if queue_id != -1:
self.get_queue().wait_for_finish()

response = requests.post(endpoint, json=request_data, stream=True, headers=self.request_headers, verify=self.ssl_certfile)
response = requests.post(
endpoint, json=request_data, stream=True, headers=self.request_headers, verify=self.ssl_certfile
)

if response.status_code == 400:
raise_exception(response.json().get('exception'))
Expand Down

0 comments on commit 9cf88f9

Please sign in to comment.