From 09c4a4cc7d3183be19364166783a603a44ff4396 Mon Sep 17 00:00:00 2001 From: Satoshi <6world4trigger@gmail.com> Date: Tue, 11 Mar 2025 01:42:02 +0800 Subject: [PATCH] fix: import `display` from `ipython.display` --- spacy/displacy/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/displacy/__init__.py b/spacy/displacy/__init__.py index bde2d04fe..032c27ce7 100644 --- a/spacy/displacy/__init__.py +++ b/spacy/displacy/__init__.py @@ -66,7 +66,7 @@ def render( if jupyter or (jupyter is None and is_in_jupyter()): # return HTML rendered by IPython display() # See #4840 for details on span wrapper to disable mathjax - from IPython.core.display import HTML, display + from IPython.display import HTML, display return display(HTML('{}'.format(html))) return html