Skip to content

Commit

Permalink
Added json.dumps to response data
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdria committed Nov 11, 2024
1 parent f70dad2 commit 9cb085c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion esignanywhere_python_client/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.2.0"
__version__ = "1.3.0"
3 changes: 2 additions & 1 deletion esignanywhere_python_client/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import json
from typing import Any, Dict, List

import requests
Expand All @@ -18,7 +19,7 @@ def __init__(
self.status_code = status_code
self.service_url = service_url
self.method_name = method_name
self.request_data = request_data
self.request_data = json.dumps(request_data)
try:
self.response_data = response.json()
except Exception:
Expand Down

0 comments on commit 9cb085c

Please sign in to comment.