diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2018-09-02 09:48:52 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2018-09-02 09:48:52 -0400 |
commit | a08f4d15b5732f5252c38b18b5b53a9c71705dc6 (patch) | |
tree | 029c5d75a321d9639aca02a5d331aa397dac9320 | |
parent | 2fc78dc9af3e556829ce69d3e1311e5629200882 (diff) | |
download | cherrypy-git-a08f4d15b5732f5252c38b18b5b53a9c71705dc6.tar.gz |
Remove unused imports
-rw-r--r-- | cherrypy/_cptree.py | 1 | ||||
-rw-r--r-- | cherrypy/test/test_tutorials.py | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/cherrypy/_cptree.py b/cherrypy/_cptree.py index 40a725a8..917c5b1a 100644 --- a/cherrypy/_cptree.py +++ b/cherrypy/_cptree.py @@ -3,7 +3,6 @@ import os import cherrypy -from cherrypy._cpcompat import ntou from cherrypy import _cpconfig, _cplogging, _cprequest, _cpwsgi, tools from cherrypy.lib import httputil, reprconf diff --git a/cherrypy/test/test_tutorials.py b/cherrypy/test/test_tutorials.py index fcae18ce..002a2b45 100644 --- a/cherrypy/test/test_tutorials.py +++ b/cherrypy/test/test_tutorials.py @@ -1,6 +1,5 @@ import sys import imp -import types import importlib import cherrypy |