Skip to content

Commit

Permalink
add support to all python notebooks in report (mljar#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
pplonski committed Apr 7, 2021
1 parent cc777db commit faaed9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions supervised/base_automl.py
Original file line number Diff line number Diff line change
Expand Up @@ -2098,9 +2098,9 @@ def _report(self, width=900, height=1200):

main_readme_html = os.path.join(self._results_path, "README.html")

# if os.path.exists(main_readme_html):
# with open(main_readme_html) as fin:
# return HTML(fin.read())
if os.path.exists(main_readme_html):
with open(main_readme_html) as fin:
return HTML(fin.read())

body = ""
fname = os.path.join(self._results_path, "README.md")
Expand Down

0 comments on commit faaed9b

Please sign in to comment.