aboutsummaryrefslogtreecommitdiffstats
path: root/test/websockets/test_websockets.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 /test/websockets/test_websockets.py
parent690b8b4f4e00d60b373b5a1481930f21bbc5054a (diff)
downloadmitmproxy-476badf45cd085d69b6162cd48983e3cd22cefcc.tar.gz
mitmproxy-476badf45cd085d69b6162cd48983e3cd22cefcc.tar.bz2
mitmproxy-476badf45cd085d69b6162cd48983e3cd22cefcc.zip
cleanup imports
Diffstat (limited to 'test/websockets/test_websockets.py')
-rw-r--r--test/websockets/test_websockets.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/websockets/test_websockets.py b/test/websockets/test_websockets.py
index 9fa98172..752f2c3e 100644
--- a/test/websockets/test_websockets.py
+++ b/test/websockets/test_websockets.py
@@ -2,7 +2,9 @@ import os
from nose.tools import raises
-from netlib import tcp, http, websockets, tutils
+from netlib import tcp
+from netlib import tutils
+from netlib import websockets
from netlib.http import status_codes
from netlib.http.exceptions import *
from netlib.http.http1 import HTTP1Protocol