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