Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed May 31, 2022
1 parent 6cefde9 commit 21c5da2
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions jupyter_client/channels.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 21c5da2

Please sign in to comment.