diff options
author | Maximilian Hils <git@maximilianhils.com> | 2019-11-16 13:20:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-16 13:20:17 +0100 |
commit | ee92477c1bd90cdf1550a537e9a6031997abf62f (patch) | |
tree | 3422138ce58ae68450a1e29d02c67679c78a2481 | |
parent | bccee15dcbc186d0014809830c5b996a3fb2f442 (diff) | |
download | mitmproxy-ee92477c1bd90cdf1550a537e9a6031997abf62f.tar.gz mitmproxy-ee92477c1bd90cdf1550a537e9a6031997abf62f.tar.bz2 mitmproxy-ee92477c1bd90cdf1550a537e9a6031997abf62f.zip |
fix lint
-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) |