We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ef701ea + c568b45 commit 20a61aaCopy full SHA for 20a61aa
1 file changed
ipykernel/kernelapp.py
@@ -488,18 +488,6 @@ def init_shell(self):
488
if self.shell:
489
self.shell.configurables.append(self)
490
491
- def init_extensions(self):
492
- super(IPKernelApp, self).init_extensions()
493
- # BEGIN HARDCODED WIDGETS HACK
494
- # Ensure ipywidgets extension is loaded if available
495
- extension_man = self.shell.extension_manager
496
- if 'ipywidgets' not in extension_man.loaded:
497
- try:
498
- extension_man.load_extension('ipywidgets')
499
- except ImportError as e:
500
- self.log.debug('ipywidgets package not installed. Widgets will not be available.')
501
- # END HARDCODED WIDGETS HACK
502
-
503
def configure_tornado_logger(self):
504
""" Configure the tornado logging.Logger.
505
0 commit comments