Skip to content

Commit cafb4b9

Browse files
committed
analytics asset return data as dict
1 parent d8eec95 commit cafb4b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tigeropen/trade/response/analytics_asset_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def parse_response_content(self, response_content):
2121
self._is_success = response['is_success']
2222

2323
if self.data:
24-
result = camel_to_underline_obj(json.loads(self.data))
24+
result = camel_to_underline_obj(self.data)
2525
history = result.get('history')
2626
if history:
2727
for item in history:

0 commit comments

Comments
 (0)