diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-01-27 10:10:14 +0100 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-01-27 10:36:28 +0100 |
commit | c2bb29f669cd80509f4efe205551a9cf5fc29770 (patch) | |
tree | 0b5b71ecb430a2eaf6bcdca7cb8fa23e23ab2173 /test/test_flow.py | |
parent | 299c7fa34c6e5492dfcc0bb0e7b01e9dd2201b59 (diff) | |
download | mitmproxy-c2bb29f669cd80509f4efe205551a9cf5fc29770.tar.gz mitmproxy-c2bb29f669cd80509f4efe205551a9cf5fc29770.tar.bz2 mitmproxy-c2bb29f669cd80509f4efe205551a9cf5fc29770.zip |
cleanup imports
Diffstat (limited to 'test/test_flow.py')
-rw-r--r-- | test/test_flow.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/test_flow.py b/test/test_flow.py index d052a8e8..388182f9 100644 --- a/test/test_flow.py +++ b/test/test_flow.py @@ -10,7 +10,11 @@ import netlib.utils from netlib import odict from netlib.http import CONTENT_MISSING, Headers from libmproxy import filt, controller, tnetstring, flow -from libmproxy.models import Error, Flow, HTTPRequest, HTTPResponse, HTTPFlow, decoded +from libmproxy.models import Error +from libmproxy.models import Flow +from libmproxy.models import HTTPFlow +from libmproxy.models import HTTPRequest +from libmproxy.models import HTTPResponse from libmproxy.proxy.config import HostMatcher from libmproxy.proxy import ProxyConfig from libmproxy.proxy.server import DummyServer |