run black to lint

This commit is contained in:
Alex Stokes 2019-09-08 15:32:55 -04:00
parent 7f276211b4
commit fa33fbe7bd
No known key found for this signature in database
GPG Key ID: 51CE1721B245C086
2 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@ import asyncio
from .raw_connection_interface import IRawConnection from .raw_connection_interface import IRawConnection
class RawConnection(IRawConnection): class RawConnection(IRawConnection):
reader: asyncio.StreamReader reader: asyncio.StreamReader
writer: asyncio.StreamWriter writer: asyncio.StreamWriter

View File

@ -88,6 +88,7 @@ class MultiselectClient(IMultiselectClient):
# No protocols were found, so return no protocols supported error # No protocols were found, so return no protocols supported error
raise MultiselectClientError("protocols not supported") raise MultiselectClientError("protocols not supported")
def validate_handshake(handshake_contents: str) -> bool: def validate_handshake(handshake_contents: str) -> bool:
""" """
Determine if handshake is valid and should be confirmed Determine if handshake is valid and should be confirmed