Skip to content

Commit

Permalink
Start IOPub first
Browse files Browse the repository at this point in the history
  • Loading branch information
SylvainCorlay committed Dec 4, 2020
1 parent 778fa85 commit 7631ed0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jupyter_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@ def start_channels(self, shell=True, iopub=True, stdin=True, hb=True, control=Tr
:meth:`start_kernel`. If the channels have been stopped and you
call this, :class:`RuntimeError` will be raised.
"""
if iopub:
self.iopub_channel.start()
if shell:
self.shell_channel.start()
self.kernel_info()
if iopub:
self.iopub_channel.start()
if stdin:
self.stdin_channel.start()
self.allow_stdin = True
Expand Down

0 comments on commit 7631ed0

Please sign in to comment.