diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-05-27 11:25:33 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-05-27 11:25:33 +0200 |
commit | 161bc2cfaa8b70b4c2cab5562784df34013452e1 (patch) | |
tree | f35ec3ccf8acc580f87089fb695b775596fc9c09 /netlib/h2/h2.py | |
parent | e3d390e036430b9d7cc4b93679229fe118eb583a (diff) | |
download | mitmproxy-161bc2cfaa8b70b4c2cab5562784df34013452e1.tar.gz mitmproxy-161bc2cfaa8b70b4c2cab5562784df34013452e1.tar.bz2 mitmproxy-161bc2cfaa8b70b4c2cab5562784df34013452e1.zip |
cleanup code with autoflake
run the following command:
$ autoflake -r -i --remove-all-unused-imports --remove-unused-variables .
Diffstat (limited to 'netlib/h2/h2.py')
-rw-r--r-- | netlib/h2/h2.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/netlib/h2/h2.py b/netlib/h2/h2.py index 1a39a635..7a85226f 100644 --- a/netlib/h2/h2.py +++ b/netlib/h2/h2.py @@ -1,8 +1,3 @@ -import base64 -import hashlib -import os -import struct -import io # "PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n" CLIENT_CONNECTION_PREFACE = '505249202a20485454502f322e300d0a0d0a534d0d0a0d0a' |