aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/ipython/py3/IPython/core/display.py
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-10-17 11:21:34 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2024-10-17 11:31:31 +0300
commit09691831380ca7c15cfed3445465e27837c4130d (patch)
tree230283a3041728afefff825e1e5fb6da019eeb3e /contrib/python/ipython/py3/IPython/core/display.py
parent68f2bcc600fc15fb8400346624c43d6be3ec81b2 (diff)
downloadydb-09691831380ca7c15cfed3445465e27837c4130d.tar.gz
Intermediate changes
commit_hash:2d9a1d3a3501b70a635f24b69a195c83059b71da
Diffstat (limited to 'contrib/python/ipython/py3/IPython/core/display.py')
-rw-r--r--contrib/python/ipython/py3/IPython/core/display.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/contrib/python/ipython/py3/IPython/core/display.py b/contrib/python/ipython/py3/IPython/core/display.py
index 20e2e34b8f..5c4557b150 100644
--- a/contrib/python/ipython/py3/IPython/core/display.py
+++ b/contrib/python/ipython/py3/IPython/core/display.py
@@ -41,7 +41,11 @@ 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():