aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/ipython/py2/IPython/terminal/pt_inputhooks/qt.py
diff options
context:
space:
mode:
authorsmosker <smosker@yandex-team.ru>2022-02-10 16:48:22 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:22 +0300
commit01fa2667d0e5e868b18424bc1906146e5ee340db (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /contrib/python/ipython/py2/IPython/terminal/pt_inputhooks/qt.py
parentdd14d17a747a9c259858faf2fcc3ea6b92df4e15 (diff)
downloadydb-01fa2667d0e5e868b18424bc1906146e5ee340db.tar.gz
Restoring authorship annotation for <smosker@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/python/ipython/py2/IPython/terminal/pt_inputhooks/qt.py')
-rw-r--r--contrib/python/ipython/py2/IPython/terminal/pt_inputhooks/qt.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/contrib/python/ipython/py2/IPython/terminal/pt_inputhooks/qt.py b/contrib/python/ipython/py2/IPython/terminal/pt_inputhooks/qt.py
index 536050e8cd..7395ac39eb 100644
--- a/contrib/python/ipython/py2/IPython/terminal/pt_inputhooks/qt.py
+++ b/contrib/python/ipython/py2/IPython/terminal/pt_inputhooks/qt.py
@@ -39,11 +39,11 @@ def inputhook(context):
else:
# On POSIX platforms, we can use a file descriptor to quit the event
# loop when there is input ready to read.
- notifier = QtCore.QSocketNotifier(context.fileno(),
- QtCore.QSocketNotifier.Read)
- # connect the callback we care about before we turn it on
- notifier.activated.connect(event_loop.exit)
+ notifier = QtCore.QSocketNotifier(context.fileno(),
+ QtCore.QSocketNotifier.Read)
+ # connect the callback we care about before we turn it on
+ notifier.activated.connect(event_loop.exit)
notifier.setEnabled(True)
- # only start the event loop we are not already flipped
- if not context.input_is_ready():
- event_loop.exec_()
+ # only start the event loop we are not already flipped
+ if not context.input_is_ready():
+ event_loop.exec_()