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 /examples/complex/har_dump.py | |
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
Diffstat (limited to 'examples/complex/har_dump.py')
-rw-r--r-- | examples/complex/har_dump.py | 2 |
1 files changed, 1 insertions, 1 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() } |