Remove json.loads

This commit is contained in:
M-307 2022-08-16 03:17:07 +07:00
parent 8bd4ce9573
commit 06fae43bbb

View File

@ -86,7 +86,7 @@ async def to_data(response: ClientResponse) -> Dict[str, Any]:
content = {
"status": response.status,
"content": json.loads(data)
"content": data
}
return content