aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/http2/frame.py
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2015-06-18 15:32:52 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2015-06-18 17:14:38 +0200
commit69e71097f7a9633a43d566b2a46aab370f07dce3 (patch)
tree117f58730fc647e219b362691f0365250b92c04f /netlib/http2/frame.py
parent40436ffb1f8293dde9217e2a0167e6c66b11d1f1 (diff)
downloadmitmproxy-69e71097f7a9633a43d566b2a46aab370f07dce3.tar.gz
mitmproxy-69e71097f7a9633a43d566b2a46aab370f07dce3.tar.bz2
mitmproxy-69e71097f7a9633a43d566b2a46aab370f07dce3.zip
mark unused variables and arguments
Diffstat (limited to 'netlib/http2/frame.py')
-rw-r--r--netlib/http2/frame.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/netlib/http2/frame.py b/netlib/http2/frame.py
index b4783a02..f7e60471 100644
--- a/netlib/http2/frame.py
+++ b/netlib/http2/frame.py
@@ -116,7 +116,8 @@ class Frame(object):
self.length = len(self.payload_bytes())
return "\n".join([
- "%s: %s | length: %d | flags: %#x | stream_id: %d" % (direction, self.__class__.__name__, self.length, self.flags, self.stream_id),
+ "%s: %s | length: %d | flags: %#x | stream_id: %d" % (
+ direction, self.__class__.__name__, self.length, self.flags, self.stream_id),
self.payload_human_readable(),
"===============================================================",
])