Skip to content

Commit b00f293

Browse files
kylebarronKirill888
authored andcommitted
Support cross-widget messaging
1 parent 0099acf commit b00f293

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

jupyter_ui_poll/_poll.py

+2
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def __init__(self, shell, loop) -> None:
5454
kernel.shell_handlers["execute_request"] = self._execute_request
5555

5656
shell.events.register("post_run_cell", self._post_run_cell_hook)
57+
shell.events.register("post_execute", self._post_run_cell_hook)
5758

5859
def restore(self):
5960
if self._backup_execute_request is not None:
@@ -116,6 +117,7 @@ async def do_one_iteration(self):
116117

117118
def _post_run_cell_hook(self, *args, **kw):
118119
self._shell.events.unregister("post_run_cell", self._post_run_cell_hook)
120+
self._shell.events.unregister("post_execute", self._post_run_cell_hook)
119121
self.restore()
120122
KernelWrapper._current = None
121123
asyncio.ensure_future(self.replay(), loop=self._loop)

0 commit comments

Comments
 (0)