We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At the moment, the file object returned by DocuSignClient.get_envelope_document() returns file object that has no close() method: https://github.com/novapost/pydocusign/blob/467e4e17bb01879068bcf8f50f3118940ad82c57/pydocusign/client.py#L246 The close() method is implemented in the response object. Not in response.raw.
DocuSignClient.get_envelope_document()
close()
Without close() method, it is quite hard to explicitely close the connection!
The text was updated successfully, but these errors were encountered:
Perhaps just add close() attribute to response.raw
Sorry, something went wrong.
Refs #12 - DocuSignClient.get_envelope_document() returns a file-like…
d2aa3ef
… object with a close() method.
977e6ce
benoitbryon
No branches or pull requests
At the moment, the file object returned by
DocuSignClient.get_envelope_document()
returns file object that has noclose()
method: https://github.com/novapost/pydocusign/blob/467e4e17bb01879068bcf8f50f3118940ad82c57/pydocusign/client.py#L246The
close()
method is implemented in the response object. Not in response.raw.Without close() method, it is quite hard to explicitely close the connection!
The text was updated successfully, but these errors were encountered: