diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-06-05 18:11:27 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-06-05 18:11:27 -0400 |
commit | 1265e9de717f8bfd5266e69c32affda05ea055c8 (patch) | |
tree | 5fe596fc4db76b4f93edb94bb8dcc77dc07dba69 | |
parent | 9a606125d5f2576e2d16c6d92519ca20bf717604 (diff) | |
download | cherrypy-git-1265e9de717f8bfd5266e69c32affda05ea055c8.tar.gz |
Remove unused imports
-rw-r--r-- | cherrypy/test/test_dynamicobjectmapping.py | 1 | ||||
-rw-r--r-- | cherrypy/test/test_request_obj.py | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/cherrypy/test/test_dynamicobjectmapping.py b/cherrypy/test/test_dynamicobjectmapping.py index 5598ef1e..331c3f2e 100644 --- a/cherrypy/test/test_dynamicobjectmapping.py +++ b/cherrypy/test/test_dynamicobjectmapping.py @@ -2,7 +2,6 @@ import six import cherrypy from cherrypy._cpcompat import sorted -from cherrypy._cptree import Application from cherrypy.test import helper script_names = ["", "/foo", "/users/fred/blog", "/corp/blog"] diff --git a/cherrypy/test/test_request_obj.py b/cherrypy/test/test_request_obj.py index 1fed6298..14b0a1ca 100644 --- a/cherrypy/test/test_request_obj.py +++ b/cherrypy/test/test_request_obj.py @@ -10,7 +10,6 @@ import six from cherrypy._cpcompat import IncompleteRead, ntob, ntou import cherrypy -from cherrypy import _cptools, tools from cherrypy.lib import httputil defined_http_methods = ("OPTIONS", "GET", "HEAD", "POST", "PUT", "DELETE", |