Skip to content

Commit

Permalink
Fix ipython import issue
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasdabbas committed Apr 11, 2024
1 parent 4991649 commit 6fc1b17
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion adviz/racing_chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import plotly.express as px
from plotly.subplots import make_subplots
import adviz
from IPython.display import display_html

# %% ../nbs/03_racing_chart.ipynb 4
def racing_chart(
Expand Down
6 changes: 3 additions & 3 deletions nbs/03_racing_chart.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"outputs": [],
"source": [
"#| hide\n",
"from nbdev.showdoc import *"
"from nbdev.showdoc import *\n",
"from IPython.display import display_html"
]
},
{
Expand All @@ -42,8 +43,7 @@
"import pandas as pd\n",
"import plotly.express as px\n",
"from plotly.subplots import make_subplots\n",
"import adviz\n",
"from IPython.display import display_html"
"import adviz"
]
},
{
Expand Down

0 comments on commit 6fc1b17

Please sign in to comment.