diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2023-11-15 09:28:54 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2023-11-15 10:14:41 +0300 |
commit | 351c5f640a103d19f8f45c3f2087c4d7a4858299 (patch) | |
tree | 1b5f3f01458a148537e209a8496ccf0ec01fb825 /contrib/python/ipython/py3/IPython/extensions | |
parent | 6918eac78225162084b3dc2af468f5614975cc29 (diff) | |
download | ydb-351c5f640a103d19f8f45c3f2087c4d7a4858299.tar.gz |
Update contrib/python/ipython/py3 to 8.17.2
Diffstat (limited to 'contrib/python/ipython/py3/IPython/extensions')
-rw-r--r-- | contrib/python/ipython/py3/IPython/extensions/autoreload.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/ipython/py3/IPython/extensions/autoreload.py b/contrib/python/ipython/py3/IPython/extensions/autoreload.py index 0025ad519f..98c9a0d01a 100644 --- a/contrib/python/ipython/py3/IPython/extensions/autoreload.py +++ b/contrib/python/ipython/py3/IPython/extensions/autoreload.py @@ -701,7 +701,7 @@ class AutoreloadMagics(Magics): # Inject module to user namespace self.shell.push({top_name: top_module}) - def pre_run_cell(self): + def pre_run_cell(self, info): if self._reloader.enabled: try: self._reloader.check() |