Merge pull request #46 from zixuanzh/smux-comment

fixed comment
This commit is contained in:
Alex Haynes 2018-11-11 19:31:55 -05:00 committed by GitHub
commit 8e4c5c740e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -8,7 +8,7 @@ class Multiplex(object):
def __init__(self, conn, initiator):
"""
:param conn: an instance of raw connection
: param initiator: boolean to prevent multiplex with self
:param initiator: boolean to prevent multiplex with self
"""
self.muxed_conn = MuxedConn(conn, initiator)

View File

@ -21,4 +21,3 @@ class TransportUpgrader(object):
# For PoC, no security
# Default to mplex
pass