From e5f83bbf93dded6347dd17f2668f5a7609632a68 Mon Sep 17 00:00:00 2001 From: Adrian Fletcher Date: Mon, 1 Jan 2024 02:00:13 -0500 Subject: [PATCH] updated deprecated IPython.core.display command --- docs/00-xyz-sample-notebook.ipynb | 2 +- {{ cookiecutter.repo_name }}/reference/easydata/notebooks.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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