Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions execnb/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from fastcore.utils import *
from fastcore.script import call_parse
from fastcore.ansi import ansi2html
from fastcore.ansi import ansi2html, strip_ansi

import multiprocessing,types,traceback,signal
try:
Expand All @@ -17,7 +17,6 @@
from IPython.core.interactiveshell import InteractiveShell, ExecutionInfo, ExecutionResult
from IPython.core.displayhook import DisplayHook
from IPython.utils.capture import capture_output
from IPython.utils.text import strip_ansi
from IPython.core.completer import IPCompleter,provisionalcompleter,Completer
from IPython.core.hooks import CommandChainDispatcher
from IPython.core.completerlib import module_completer
Expand Down
3 changes: 1 addition & 2 deletions nbs/02_shell.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"\n",
"from fastcore.utils import *\n",
"from fastcore.script import call_parse\n",
"from fastcore.ansi import ansi2html\n",
"from fastcore.ansi import ansi2html, strip_ansi\n",
"\n",
"import multiprocessing,types,traceback,signal\n",
"try:\n",
Expand All @@ -40,7 +40,6 @@
"from IPython.core.interactiveshell import InteractiveShell, ExecutionInfo, ExecutionResult\n",
"from IPython.core.displayhook import DisplayHook\n",
"from IPython.utils.capture import capture_output\n",
"from IPython.utils.text import strip_ansi\n",
"from IPython.core.completer import IPCompleter,provisionalcompleter,Completer\n",
"from IPython.core.hooks import CommandChainDispatcher\n",
"from IPython.core.completerlib import module_completer\n",
Expand Down