1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 09:13:23 +00:00

remove unnecssary comment

This commit is contained in:
Parker Hancock
2023-12-08 09:30:42 -06:00
committed by Jair Henrique
parent 7bf8f65815
commit e8e9a4af9f

View File

@@ -38,7 +38,7 @@ def _to_serialized_response(httpx_response):
"status_code": httpx_response.status_code,
"http_version": httpx_response.http_version,
"headers": _transform_headers(httpx_response),
"content": httpx_response.content#.decode("utf-8", "ignore"),
"content": httpx_response.content,
}