summaryrefslogtreecommitdiffstats
path: root/contrib/python/ipython/py3/IPython/extensions
diff options
context:
space:
mode:
authorAlexSm <[email protected]>2024-03-13 16:36:01 +0100
committerGitHub <[email protected]>2024-03-13 16:36:01 +0100
commit6cb1176da7acfe6571977f06e7d9dc4365cb330b (patch)
treec15fcf49a68ba829dc39eef237f94f41d0b55ee6 /contrib/python/ipython/py3/IPython/extensions
parent67ba58b766f6ca63d5471aa18728e69d03ffe1ca (diff)
parent18c62b66fdaa3ae6c066f720f82b88b28cc3dc91 (diff)
Merge pull request #2697 from ydb-platform/mergelibs-240313-1032
Library import 240313-1032
Diffstat (limited to 'contrib/python/ipython/py3/IPython/extensions')
-rw-r--r--contrib/python/ipython/py3/IPython/extensions/storemagic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/ipython/py3/IPython/extensions/storemagic.py b/contrib/python/ipython/py3/IPython/extensions/storemagic.py
index d9d00f14b9a..f3bc8f6c136 100644
--- a/contrib/python/ipython/py3/IPython/extensions/storemagic.py
+++ b/contrib/python/ipython/py3/IPython/extensions/storemagic.py
@@ -145,7 +145,7 @@ class StoreMagics(Magics):
if args:
for arg in args:
try:
- obj = db['autorestore/' + arg]
+ obj = db["autorestore/" + arg]
except KeyError:
try:
restore_aliases(ip, alias=arg)