Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
fix wrong import
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Mar 12, 2019
1 parent d42f7ab commit 42855fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pyquickhelper/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def main(args, fLOG=print):
from .pandashelper import df2rst
from .pycode import clean_files, run_test_function
from .cli import cli_main_helper
from .helpgen import process_notebooks
from .helpgen.process_notebooks import process_notebooks
from .filehelper import create_visual_diff_through_html_files
from .filehelper import explore_folder
except ImportError:
Expand All @@ -32,7 +32,7 @@ def main(args, fLOG=print):
from pyquickhelper.pandashelper import df2rst
from pyquickhelper.pycode import clean_files, run_test_function
from pyquickhelper.cli import cli_main_helper
from pyquickhelper.helpgen import process_notebooks
from pyquickhelper.helpgen.process_notebooks import process_notebooks
from pyquickhelper.filehelper import create_visual_diff_through_html_files
from pyquickhelper.filehelper import explore_folder

Expand Down

0 comments on commit 42855fd

Please sign in to comment.