Skip to content

Commit c27e5b9

Browse files
authored
Merge pull request #861 from minrk/quickfix-abort-queues
2 parents aa1e7a0 + bdf3bc1 commit c27e5b9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ipykernel/kernelbase.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -997,7 +997,8 @@ def _abort_queues(self):
997997
self.shell_stream.flush()
998998

999999
# Callback to signal that we are done aborting
1000-
def stop_aborting():
1000+
# dispatch functions _must_ be async
1001+
async def stop_aborting():
10011002
self.log.info("Finishing abort")
10021003
self._aborting = False
10031004

0 commit comments

Comments
 (0)