run black over dangling files

This commit is contained in:
Alex Stokes
2019-08-02 11:44:11 -07:00
parent da9d5cadec
commit 7b7c8ad30d
11 changed files with 844 additions and 560 deletions

View File

@ -1,7 +1,6 @@
from abc import ABC, abstractmethod
class IRawConnection(ABC):
"""
A Raw Connection provides a Reader and a Writer

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,2 @@
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
import grpc

View File

@ -5,7 +5,6 @@ from libp2p.peer.id import ID
from libp2p.peer.peerinfo import PeerInfo
class IContentRouting(ABC):
@abstractmethod
def provide(self, cid: bytes, announce: bool = True) -> None:

View File

@ -3,7 +3,6 @@ from libp2p.security.security_multistream import SecurityMultistream
class TransportUpgrader:
def __init__(self, secOpt, muxerOpt):
# Store security option
self.security_multistream = SecurityMultistream()