From e8e9a4af9fb3917e58c3a6ee7fcf6c4dfb70dca1 Mon Sep 17 00:00:00 2001 From: Parker Hancock <633163+parkerhancock@users.noreply.github.com> Date: Fri, 8 Dec 2023 09:30:42 -0600 Subject: [PATCH] remove unnecssary comment --- vcr/stubs/httpx_stubs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcr/stubs/httpx_stubs.py b/vcr/stubs/httpx_stubs.py index 453d329..0bb3b4a 100644 --- a/vcr/stubs/httpx_stubs.py +++ b/vcr/stubs/httpx_stubs.py @@ -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, }