Skip to content

Commit 21c5da2

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

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

jupyter_client/channels.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
from threading import Event
1010
from threading import Thread
1111

12-
from zmq.asyncio import Context, Socket
12+
from zmq.asyncio import Context
13+
from zmq.asyncio import Socket
1314

1415
from .channelsabc import HBChannelABC
1516
from .session import Session
@@ -193,9 +194,7 @@ def call_handlers(self, since_last_heartbeat: float) -> None:
193194
class ZMQSocketChannel(object):
194195
"""A ZMQ socket in an async API"""
195196

196-
def __init__(
197-
self, socket: Socket, session: Session, loop: t.Any = None
198-
) -> None:
197+
def __init__(self, socket: Socket, session: Session, loop: t.Any = None) -> None:
199198
"""Create a channel.
200199
201200
Parameters

0 commit comments

Comments
 (0)