8bcffb67cb
* ignore TODO and kademlia * remove unnecessary pass * fixed swarm warnings * fixed peerdata_interface warnings * fixed peer warnings * fixed rest of linting errors * trying to fix last error * fixed dup errors
15 lines
349 B
Python
15 lines
349 B
Python
from .raw_connection_interface import IRawConnection
|
|
|
|
|
|
class RawConnection(IRawConnection):
|
|
# pylint: disable=too-few-public-methods
|
|
|
|
def __init__(self, ip, port, reader, writer):
|
|
self.conn_ip = ip
|
|
self.conn_port = port
|
|
self.reader = reader
|
|
self.writer = writer
|
|
|
|
def close(self):
|
|
self.writer.close()
|