From 12b403083ececdbba503e67ad6ef41e4df2a5a4e Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sun, 2 Mar 2014 08:58:12 -0500 Subject: Remove unused imports --- cherrypy/lib/jsontools.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cherrypy/lib/jsontools.py b/cherrypy/lib/jsontools.py index 776bddf6..408f556e 100644 --- a/cherrypy/lib/jsontools.py +++ b/cherrypy/lib/jsontools.py @@ -1,6 +1,5 @@ -import sys import cherrypy -from cherrypy._cpcompat import basestring, ntou, json, json_encode, json_decode +from cherrypy._cpcompat import basestring, ntou, json_encode, json_decode def json_processor(entity): """Read application/json data into request.json.""" @@ -84,4 +83,3 @@ def json_out(content_type='application/json', debug=False, handler=json_handler) if debug: cherrypy.log('Setting Content-Type to %s' % content_type, 'TOOLS.JSON_OUT') cherrypy.serving.response.headers['Content-Type'] = content_type - -- cgit v1.2.1