File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed
src/jupyter_contrib_nbextensions
nbextensions/varInspector Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11
11
import os
12
12
13
13
from jupyter_contrib_core .testing_utils import get_logger
14
- from recommonmark .transform import AutoStructify
15
14
from recommonmark .parser import CommonMarkParser
15
+ from recommonmark .transform import AutoStructify
16
16
17
17
log = get_logger (name = os .path .basename (__file__ ), log_level = logging .INFO )
18
18
Original file line number Diff line number Diff line change 9
9
from .nbTranslate import NotebookLangExporter
10
10
from .pp_highlighter import HighlighterPostProcessor , HighlighterPreprocessor
11
11
from .pre_codefolding import CodeFoldingPreprocessor
12
- from .pre_pymarkdown import PyMarkdownPreprocessor
13
12
from .pre_embedimages import EmbedImagesPreprocessor
13
+ from .pre_pymarkdown import PyMarkdownPreprocessor
14
14
from .pre_svg2pdf import SVG2PDFPreprocessor
15
15
from .toc2 import TocExporter
16
16
Original file line number Diff line number Diff line change 3
3
4
4
from IPython import get_ipython
5
5
from IPython .core .magics .namespace import NamespaceMagics
6
+
6
7
_nms = NamespaceMagics ()
7
8
_Jupyter = get_ipython ()
8
9
_nms .shell = _Jupyter .kernel .shell
Original file line number Diff line number Diff line change 27
27
from traitlets .tests .utils import check_help_all_output , check_help_output
28
28
29
29
import jupyter_contrib_nbextensions
30
- from jupyter_contrib_nbextensions .application import main as main_app
31
30
from jupyter_contrib_nbextensions .application import (
32
31
BaseContribNbextensionsApp , BaseContribNbextensionsInstallApp ,
33
32
ContribNbextensionsApp , InstallContribNbextensionsApp ,
34
33
UninstallContribNbextensionsApp ,
35
34
)
35
+ from jupyter_contrib_nbextensions .application import main as main_app
36
36
from jupyter_contrib_nbextensions .install import toggle_install
37
37
38
38
# attempt to use LibYaml if available
You can’t perform that action at this time.
0 commit comments