diff options
author | Thomas Kriechbaumer <Kriechi@users.noreply.github.com> | 2019-09-28 13:06:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-28 13:06:07 +0200 |
commit | 773da8e39dd4992559ba2c0d3a9251981e3aa6aa (patch) | |
tree | ff1fbddefade16ba6cc9e58568d2c8050b2a78f6 | |
parent | 7d60dde76cbcc115b33c3d763de5995ef5621565 (diff) | |
parent | a54954ee1ebb46cd4e163af407faf1e034e1a4e6 (diff) | |
download | mitmproxy-773da8e39dd4992559ba2c0d3a9251981e3aa6aa.tar.gz mitmproxy-773da8e39dd4992559ba2c0d3a9251981e3aa6aa.tar.bz2 mitmproxy-773da8e39dd4992559ba2c0d3a9251981e3aa6aa.zip |
Merge pull request #3650 from Kriechi/fix-linting
fix linting
-rw-r--r-- | examples/complex/har_dump.py | 2 | ||||
-rw-r--r-- | setup.cfg | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/examples/complex/har_dump.py b/examples/complex/har_dump.py index 414b4f61..e3cea9fd 100644 --- a/examples/complex/har_dump.py +++ b/examples/complex/har_dump.py @@ -88,7 +88,7 @@ def response(flow): # HAR timings are integers in ms, so we re-encode the raw timings to that format. timings = { - k: int(1000 * v) if v != -1 else -1 + k: int(1000 * v) if v != -1 else -1 for k, v in timings_raw.items() } @@ -59,7 +59,6 @@ exclude = mitmproxy/net/http/headers.py mitmproxy/net/http/message.py mitmproxy/net/http/multipart.py - mitmproxy/net/http/url.py mitmproxy/net/tcp.py mitmproxy/net/tls.py mitmproxy/options.py |