We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5dde7a commit 95267f9Copy full SHA for 95267f9
jupyter_console/ptshell.py
@@ -839,7 +839,7 @@ def include_output(self, msg):
839
async def handle_external_iopub(self, loop=None):
840
while self.keep_running:
841
# we need to check for keep_running from time to time
842
- poll_result = await self.client.iopub_channel.socket.poll(500)
+ poll_result = run_sync(self.client.iopub_channel.socket.poll)(500)
843
if poll_result:
844
self.handle_iopub()
845
0 commit comments