aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2019-09-28 12:01:39 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2019-09-28 12:29:16 +0200
commita54954ee1ebb46cd4e163af407faf1e034e1a4e6 (patch)
treeff1fbddefade16ba6cc9e58568d2c8050b2a78f6 /examples
parent7d60dde76cbcc115b33c3d763de5995ef5621565 (diff)
downloadmitmproxy-a54954ee1ebb46cd4e163af407faf1e034e1a4e6.tar.gz
mitmproxy-a54954ee1ebb46cd4e163af407faf1e034e1a4e6.tar.bz2
mitmproxy-a54954ee1ebb46cd4e163af407faf1e034e1a4e6.zip
fix linting
Diffstat (limited to 'examples')
-rw-r--r--examples/complex/har_dump.py2
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()
}