From 0e9a7c0874487070e8774b361569a380289e1b44 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Fri, 25 Oct 2013 11:49:53 -0700 Subject: [PATCH] Remove unused imports in IPython.html.notebook.handlers --- IPython/html/notebook/handlers.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/IPython/html/notebook/handlers.py b/IPython/html/notebook/handlers.py index f9666a1c6..71b9ef9d7 100644 --- a/IPython/html/notebook/handlers.py +++ b/IPython/html/notebook/handlers.py @@ -16,16 +16,12 @@ Authors: # Imports #----------------------------------------------------------------------------- -import os -import json - from tornado import web HTTPError = web.HTTPError from ..base.handlers import IPythonHandler from ..services.notebooks.handlers import _notebook_path_regex, _path_regex -from ..utils import url_path_join, url_escape, url_unescape -from urllib import quote +from ..utils import url_path_join, url_escape #----------------------------------------------------------------------------- # Handlers