From 21c5da2873f807ff27946347d7f5f6f1aed65eec Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 31 May 2022 17:08:31 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- jupyter_client/channels.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/jupyter_client/channels.py b/jupyter_client/channels.py index a79f0788d..76c43768d 100644 --- a/jupyter_client/channels.py +++ b/jupyter_client/channels.py @@ -9,7 +9,8 @@ from threading import Event from threading import Thread -from zmq.asyncio import Context, Socket +from zmq.asyncio import Context +from zmq.asyncio import Socket from .channelsabc import HBChannelABC from .session import Session @@ -193,9 +194,7 @@ def call_handlers(self, since_last_heartbeat: float) -> None: class ZMQSocketChannel(object): """A ZMQ socket in an async API""" - def __init__( - self, socket: Socket, session: Session, loop: t.Any = None - ) -> None: + def __init__(self, socket: Socket, session: Session, loop: t.Any = None) -> None: """Create a channel. Parameters