##// END OF EJS Templates
Remove unused imports in IPython.html
Thomas Kluyver -
Show More
@@ -27,7 +27,6 b' import socket'
27 27 import sys
28 28 import threading
29 29 import time
30 import uuid
31 30 import webbrowser
32 31
33 32
@@ -36,7 +35,6 b' import webbrowser'
36 35 from IPython.utils.zmqrelated import check_for_zmq
37 36 check_for_zmq('2.1.11', 'IPython.html')
38 37
39 import zmq
40 38 from jinja2 import Environment, FileSystemLoader
41 39
42 40 # Install the pyzmq ioloop. This has to be done before anything else from
@@ -22,13 +22,11 b' from tornado import web'
22 22 from zmq.eventloop import ioloop
23 23
24 24 from IPython.config.configurable import LoggingConfigurable
25 from IPython.config.loader import load_pyconfig_files
26 25 from IPython.utils.traitlets import Dict, Instance, CFloat
27 26 from IPython.parallel.apps.ipclusterapp import IPClusterStart
28 27 from IPython.core.profileapp import list_profiles_in
29 28 from IPython.core.profiledir import ProfileDir
30 29 from IPython.utils.path import get_ipython_dir
31 from IPython.utils.sysinfo import num_cpus
32 30
33 31
34 32 #-----------------------------------------------------------------------------
@@ -20,7 +20,7 b' from tornado import web'
20 20
21 21 from IPython.kernel.multikernelmanager import MultiKernelManager
22 22 from IPython.utils.traitlets import (
23 Dict, List, Unicode, Integer,
23 Dict, List, Unicode,
24 24 )
25 25
26 26 #-----------------------------------------------------------------------------
General Comments 0
You need to be logged in to leave comments. Login now