run black w/ extended line length

This commit is contained in:
Alex Stokes
2019-08-03 11:25:25 -07:00
committed by Kevin Mai-Husan Chia
parent 905dfa9a8d
commit 7477b29508
33 changed files with 71 additions and 229 deletions

View File

@ -61,9 +61,7 @@ class SecurityMultistream(ABC):
return secure_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)
@ -78,9 +76,7 @@ class SecurityMultistream(ABC):
return secure_conn
async def select_transport(
self, conn: "IRawConnection", initiator: bool
) -> "ISecureTransport":
async def select_transport(self, conn: "IRawConnection", initiator: bool) -> "ISecureTransport":
"""
Select a transport that both us and the node on the
other end of conn support and agree on