diff options
-rw-r--r-- | mitmproxy/addons/export.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/addons/export.py b/mitmproxy/addons/export.py index 7bd0aef0..9d04997f 100644 --- a/mitmproxy/addons/export.py +++ b/mitmproxy/addons/export.py @@ -27,7 +27,7 @@ def cleanup_request(f: flow.Flow) -> http.HTTPRequest: return request -def cleanup_response(f: flow.Flow)-> http.HTTPResponse: +def cleanup_response(f: flow.Flow) -> http.HTTPResponse: if not hasattr(f, "response") or not f.response: raise exceptions.CommandError("Can't export flow with no response.") assert isinstance(f, http.HTTPFlow) |