fmt
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
from collections.abc import AsyncIterator
|
||||
from uuid import uuid4
|
||||
|
||||
from ..utils import generate_good_names
|
||||
from .shell import JupyterShell
|
||||
from .transport import InputRequest, KernelMessage
|
||||
from ..utils import generate_good_names
|
||||
|
||||
|
||||
class JupyterApp:
|
||||
|
||||
@@ -97,7 +97,9 @@ class JupyterTransport:
|
||||
msg_type=message["msg_type"],
|
||||
parent_id=parent_id,
|
||||
content=dict(message.get("content", {})),
|
||||
buffers=[bytes(buffer) for buffer in message.get("buffers", [])],
|
||||
buffers=[
|
||||
bytes(buffer) for buffer in message.get("buffers", [])
|
||||
],
|
||||
)
|
||||
if decoded.msg_type == "execute_reply":
|
||||
# The shell reply and IOPub messages use different
|
||||
|
||||
Reference in New Issue
Block a user