Skip to content

Commit e653e61

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent d6033cd commit e653e61

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jupyter_client/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -568,10 +568,10 @@ async def _async_execute_interactive(
568568
state = msg["content"]["execution_state"]
569569
if msg["header"]["msg_type"] == "status":
570570
# allow to stop
571-
if state == 'busy':
572-
can_stop = True
571+
if state == "busy":
572+
can_stop = True
573573
# stop on idle
574-
if state == 'idle' and can_stop:
574+
if state == "idle" and can_stop:
575575
break
576576

577577
# output is done, get the reply

0 commit comments

Comments
 (0)