From 393b51a744636e573fc6a63b53350a2288672dd8 Mon Sep 17 00:00:00 2001 From: mhchia Date: Thu, 12 Sep 2019 17:09:11 +0800 Subject: [PATCH] isort --- libp2p/stream_muxer/mplex/exceptions.py | 2 +- libp2p/stream_muxer/mplex/mplex.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libp2p/stream_muxer/mplex/exceptions.py b/libp2p/stream_muxer/mplex/exceptions.py index 6ff6cf2..f42c561 100644 --- a/libp2p/stream_muxer/mplex/exceptions.py +++ b/libp2p/stream_muxer/mplex/exceptions.py @@ -1,7 +1,7 @@ from libp2p.stream_muxer.exceptions import ( + MuxedConnClosed, MuxedConnError, MuxedConnShuttingDown, - MuxedConnClosed, MuxedStreamClosed, MuxedStreamEOF, MuxedStreamReset, diff --git a/libp2p/stream_muxer/mplex/mplex.py b/libp2p/stream_muxer/mplex/mplex.py index 13de494..589a623 100644 --- a/libp2p/stream_muxer/mplex/mplex.py +++ b/libp2p/stream_muxer/mplex/mplex.py @@ -14,8 +14,8 @@ from libp2p.utils import ( ) from .constants import HeaderTags -from .exceptions import MplexClosed, MplexShuttingDown from .datastructures import StreamID +from .exceptions import MplexClosed, MplexShuttingDown from .mplex_stream import MplexStream MPLEX_PROTOCOL_ID = TProtocol("/mplex/6.7.0")