aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/websockets/protocol.py
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2015-08-10 20:36:47 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2015-08-10 20:36:47 +0200
commit476badf45cd085d69b6162cd48983e3cd22cefcc (patch)
tree0c7a52c4ae0d27b52bce0f93a8e244ed06dd91a1 /netlib/websockets/protocol.py
parent690b8b4f4e00d60b373b5a1481930f21bbc5054a (diff)
downloadmitmproxy-476badf45cd085d69b6162cd48983e3cd22cefcc.tar.gz
mitmproxy-476badf45cd085d69b6162cd48983e3cd22cefcc.tar.bz2
mitmproxy-476badf45cd085d69b6162cd48983e3cd22cefcc.zip
cleanup imports
Diffstat (limited to 'netlib/websockets/protocol.py')
-rw-r--r--netlib/websockets/protocol.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/netlib/websockets/protocol.py b/netlib/websockets/protocol.py
index 29b4db3d..8169309a 100644
--- a/netlib/websockets/protocol.py
+++ b/netlib/websockets/protocol.py
@@ -2,10 +2,9 @@ from __future__ import absolute_import
import base64
import hashlib
import os
-import struct
-import io
-from netlib import utils, odict, tcp
+from netlib import odict
+from netlib import utils
# Colleciton of utility functions that implement small portions of the RFC6455
# WebSockets Protocol Useful for building WebSocket clients and servers.