tPylint mitigations. - obelisk - Electrum server using libbitcoin as its backend HTML git clone https://git.parazyd.org/obelisk DIR Log DIR Files DIR Refs DIR README DIR LICENSE --- DIR commit 6336ae0a80efab0d65b7d62411625a7f90371c6a DIR parent e86a874c7d6874218adf1b88da09ebcabf8a728f HTML Author: parazyd <parazyd@dyne.org> Date: Wed, 7 Apr 2021 18:31:53 +0200 Pylint mitigations. Diffstat: M electrumobelisk/protocol.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) --- DIR diff --git a/electrumobelisk/protocol.py b/electrumobelisk/protocol.py t@@ -37,7 +37,7 @@ Please consider donating: %s """ % DONATION_ADDR) -class ElectrumProtocol(asyncio.Protocol): # pylint: disable=R0904 +class ElectrumProtocol(asyncio.Protocol): # pylint: disable=R0904,R0902 """TBD""" def __init__(self, log, chain, endpoints, server_cfg): self.log = log t@@ -200,14 +200,14 @@ class ElectrumProtocol(asyncio.Protocol): # pylint: disable=R0904 } return {"result": resp} - async def blockchain_estimatefee(self, query): + async def blockchain_estimatefee(self, query): # pylint: disable=W0613 # Help wanted return {"result": -1} async def blockchain_headers_subscribe(self, query): return - async def blockchain_relayfee(self, query): + async def blockchain_relayfee(self, query): # pylint: disable=W0613 # Help wanted return {"result": 0.00001} t@@ -238,28 +238,28 @@ class ElectrumProtocol(asyncio.Protocol): # pylint: disable=R0904 async def blockchain_transaction_from_pos(self, query): return - async def mempool_get_fee_histogram(self, query): + async def mempool_get_fee_histogram(self, query): # pylint: disable=W0613 # Help wanted return {"result": [[0, 0]]} - async def server_add_peer(self, query): + async def server_add_peer(self, query): # pylint: disable=W0613 # Help wanted return {"result": False} - async def server_banner(self, query): + async def server_banner(self, query): # pylint: disable=W0613 return {"result": BANNER} - async def server_donation_address(self, query): + async def server_donation_address(self, query): # pylint: disable=W0613 return {"result": DONATION_ADDR} async def server_features(self, query): return - async def server_peers_subscribe(self, query): + async def server_peers_subscribe(self, query): # pylint: disable=W0613 # Help wanted return {"result": []} - async def server_ping(self, query): + async def server_ping(self, query): # pylint: disable=W0613 return {"result": None} async def server_version(self, query):