From f51bfd63162703b53015c1f23900bdecbef88024 2024-09-20 04:02:28 From: Brigitta Sipőcz Date: 2024-09-20 04:02:28 Subject: [PATCH] DOC: fix typo in deprecation warning --- diff --git a/IPython/core/display.py b/IPython/core/display.py index 20e2e34..04d56ab 100644 --- a/IPython/core/display.py +++ b/IPython/core/display.py @@ -41,7 +41,7 @@ from warnings import warn def __getattr__(name): if name in _deprecated_names: - warn(f"Importing {name} from IPython.core.display is deprecated since IPython 7.14, please import from IPython display", DeprecationWarning, stacklevel=2) + warn(f"Importing {name} from IPython.core.display is deprecated since IPython 7.14, please import from IPython.display", DeprecationWarning, stacklevel=2) return getattr(display_functions, name) if name in globals().keys():