This commit is contained in:
mhchia 2019-09-12 17:09:11 +08:00
parent 5653b3f604
commit 393b51a744
No known key found for this signature in database
GPG Key ID: 389EFBEA1362589A
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
from libp2p.stream_muxer.exceptions import ( from libp2p.stream_muxer.exceptions import (
MuxedConnClosed,
MuxedConnError, MuxedConnError,
MuxedConnShuttingDown, MuxedConnShuttingDown,
MuxedConnClosed,
MuxedStreamClosed, MuxedStreamClosed,
MuxedStreamEOF, MuxedStreamEOF,
MuxedStreamReset, MuxedStreamReset,

View File

@ -14,8 +14,8 @@ from libp2p.utils import (
) )
from .constants import HeaderTags from .constants import HeaderTags
from .exceptions import MplexClosed, MplexShuttingDown
from .datastructures import StreamID from .datastructures import StreamID
from .exceptions import MplexClosed, MplexShuttingDown
from .mplex_stream import MplexStream from .mplex_stream import MplexStream
MPLEX_PROTOCOL_ID = TProtocol("/mplex/6.7.0") MPLEX_PROTOCOL_ID = TProtocol("/mplex/6.7.0")