mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
flake8
This commit is contained in:
committed by
Kevin Mai-Husan Chia
parent
5903012e0e
commit
c536aa3e07
@ -1,12 +1,11 @@
|
||||
from typing import TYPE_CHECKING, cast
|
||||
from typing import cast
|
||||
|
||||
from libp2p.security.secure_conn_interface import ISecureConn
|
||||
from libp2p.security.secure_transport_interface import ISecureTransport
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from libp2p.network.connection.raw_connection_interface import IRawConnection
|
||||
from libp2p.peer.id import ID
|
||||
from .typing import TSecurityDetails
|
||||
from libp2p.network.connection.raw_connection_interface import IRawConnection
|
||||
from libp2p.peer.id import ID
|
||||
from .typing import TSecurityDetails
|
||||
|
||||
|
||||
class InsecureTransport(ISecureTransport):
|
||||
@ -20,7 +19,7 @@ class InsecureTransport(ISecureTransport):
|
||||
def __init__(self, transport_id: str) -> None:
|
||||
self.transport_id = transport_id
|
||||
|
||||
async def secure_inbound(self, conn: "IRawConnection") -> ISecureConn:
|
||||
async def secure_inbound(self, conn: IRawConnection) -> ISecureConn:
|
||||
"""
|
||||
Secure the connection, either locally or by communicating with opposing node via conn,
|
||||
for an inbound connection (i.e. we are not the initiator)
|
||||
@ -29,7 +28,7 @@ class InsecureTransport(ISecureTransport):
|
||||
insecure_conn = InsecureConn(conn, self.transport_id)
|
||||
return insecure_conn
|
||||
|
||||
async def secure_outbound(self, conn: "IRawConnection", peer_id: "ID") -> ISecureConn:
|
||||
async def secure_outbound(self, conn: IRawConnection, peer_id: ID) -> ISecureConn:
|
||||
"""
|
||||
Secure the connection, either locally or by communicating with opposing node via conn,
|
||||
for an inbound connection (i.e. we are the initiator)
|
||||
@ -40,21 +39,21 @@ class InsecureTransport(ISecureTransport):
|
||||
|
||||
|
||||
class InsecureConn(ISecureConn):
|
||||
conn: "IRawConnection"
|
||||
details: "TSecurityDetails"
|
||||
conn: IRawConnection
|
||||
details: TSecurityDetails
|
||||
|
||||
def __init__(self, conn: "IRawConnection", conn_id: str) -> None:
|
||||
def __init__(self, conn: IRawConnection, conn_id: str) -> None:
|
||||
self.conn = conn
|
||||
self.details = cast("TSecurityDetails", {})
|
||||
self.details = cast(TSecurityDetails, {})
|
||||
self.details["id"] = conn_id
|
||||
|
||||
def get_conn(self) -> "IRawConnection":
|
||||
def get_conn(self) -> IRawConnection:
|
||||
"""
|
||||
:return: connection object that has been made secure
|
||||
"""
|
||||
return self.conn
|
||||
|
||||
def get_security_details(self) -> "TSecurityDetails":
|
||||
def get_security_details(self) -> TSecurityDetails:
|
||||
"""
|
||||
:return: map containing details about the connections security
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user