diff --git a/docs/00-xyz-sample-notebook.ipynb b/docs/00-xyz-sample-notebook.ipynb
index cc90381..aa053ce 100644
--- a/docs/00-xyz-sample-notebook.ipynb
+++ b/docs/00-xyz-sample-notebook.ipynb
@@ -25,7 +25,7 @@
"metadata": {},
"outputs": [],
"source": [
- "from IPython.core.display import display, HTML\n",
+ "from IPython.display import display, HTML\n",
"display(HTML(\"\"))"
]
},
diff --git a/{{ cookiecutter.repo_name }}/reference/easydata/notebooks.md b/{{ cookiecutter.repo_name }}/reference/easydata/notebooks.md
index 270775c..1991e3f 100644
--- a/{{ cookiecutter.repo_name }}/reference/easydata/notebooks.md
+++ b/{{ cookiecutter.repo_name }}/reference/easydata/notebooks.md
@@ -49,7 +49,7 @@ First up, if you're in a notebook, keyboard shortcuts can be found using the `Es
#### Better display
This cell makes your jupyter notebook use the full screen width. Put this as your first executable cell. You'll thank us.
```python
-from IPython.core.display import display, HTML
+from IPython.display import display, HTML
display(HTML(""))
```
#### Autoreloading