Add clarifying comment about InsecureTransport

This commit is contained in:
Alex Stokes 2019-08-02 12:07:35 -07:00
parent b2367e35d8
commit 88a3a3159e
No known key found for this signature in database
GPG Key ID: 51CE1721B245C086

View File

@ -11,6 +11,11 @@ if TYPE_CHECKING:
class InsecureTransport(ISecureTransport): class InsecureTransport(ISecureTransport):
"""
``InsecureTransport`` provides the "identity" upgrader for a ``IRawConnection``,
i.e. the upgraded transport does not add any additional security.
"""
transport_id: str transport_id: str
def __init__(self, transport_id: str) -> None: def __init__(self, transport_id: str) -> None: