diff options
author | ivasenkov15 <ivasenkov15@yandex-team.com> | 2024-01-23 12:12:09 +0300 |
---|---|---|
committer | Alexander Smirnov <alex@ydb.tech> | 2024-01-24 15:02:04 +0300 |
commit | fdca1b46d97eaacd40fb002b285099c64be3752c (patch) | |
tree | deb2fc1ce5b95954b06283783e6d4504bee84bf2 /contrib/python/ipython/py3/IPython/core/interactiveshell.py | |
parent | 8e1ef6e552adde4b26cda116a183d3889112d238 (diff) | |
download | ydb-fdca1b46d97eaacd40fb002b285099c64be3752c.tar.gz |
fix bank-applications: remove bank-forms usage
Diffstat (limited to 'contrib/python/ipython/py3/IPython/core/interactiveshell.py')
-rw-r--r-- | contrib/python/ipython/py3/IPython/core/interactiveshell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/ipython/py3/IPython/core/interactiveshell.py b/contrib/python/ipython/py3/IPython/core/interactiveshell.py index 1a73571f788..fef5ddc949b 100644 --- a/contrib/python/ipython/py3/IPython/core/interactiveshell.py +++ b/contrib/python/ipython/py3/IPython/core/interactiveshell.py @@ -3604,7 +3604,7 @@ class InteractiveShell(SingletonConfigurable): # Things related to GUI support and pylab #------------------------------------------------------------------------- - active_eventloop = None + active_eventloop: Optional[str] = None def enable_gui(self, gui=None): raise NotImplementedError('Implement enable_gui in a subclass') |