Skip to content

Commit

Permalink
fix (mypy): fix error of mypy check
Browse files Browse the repository at this point in the history
  • Loading branch information
vaimdev committed Oct 12, 2023
1 parent 38f401a commit 5d365fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphistry/arrow_uploader.py
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ def post_arrow(self, arr: pa.Table, graph_type: str, opts: str = ''):
raise Exception('No success indicator in server response')
return out
except requests.exceptions.HTTPError as e:
logger.error('Failed to post arrow to %s (%s)', sub_path, e.request.url, exc_info=True)
logger.error('Failed to post arrow to %s (%s)', sub_path, "{}/{}{}".format(self.server_base_path, sub_path, f"?{opts}" if len(opts) > 0 else ""), exc_info=True)
logger.error('%s', e)
logger.error('%s', e.response.text)
raise e
Expand Down

0 comments on commit 5d365fe

Please sign in to comment.