mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
added linter
This commit is contained in:
@ -1,25 +1,25 @@
|
||||
from abc import ABC
|
||||
from abc import ABC, abstractmethod
|
||||
|
||||
class Network(ABC):
|
||||
class INetwork(ABC):
|
||||
|
||||
def __init__(self, context, my_peer_id, peer_store):
|
||||
self.context = context
|
||||
self.my_peer_id = my_peer_id
|
||||
self.peer_store = peer_store
|
||||
def __init__(self, context, my_peer_id, peer_store):
|
||||
self.context = context
|
||||
self.my_peer_id = my_peer_id
|
||||
self.peer_store = peer_store
|
||||
|
||||
@abstractmethod
|
||||
def set_stream_handler(stream_handler):
|
||||
"""
|
||||
:param stream_handler: a stream handler instance
|
||||
:return: true if successful
|
||||
"""
|
||||
pass
|
||||
@abstractmethod
|
||||
def set_stream_handler(self, stream_handler):
|
||||
"""
|
||||
:param stream_handler: a stream handler instance
|
||||
:return: true if successful
|
||||
"""
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
def new_stream(context, peer_id):
|
||||
"""
|
||||
:param context: context instance
|
||||
:param peer_id: peer_id of destination
|
||||
:return: stream instance
|
||||
"""
|
||||
pass
|
||||
@abstractmethod
|
||||
def new_stream(self, context, peer_id):
|
||||
"""
|
||||
:param context: context instance
|
||||
:param peer_id: peer_id of destination
|
||||
:return: stream instance
|
||||
"""
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user