aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
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()
}