invthread pylint fixes

This commit is contained in:
lakshyacis 2019-09-05 14:36:44 +05:30
parent 97cbe43294
commit ef77a9816e
No known key found for this signature in database
GPG Key ID: D2C539C8EC63E9EB
1 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,7 @@
"""
src/network/invthread.py
========================
"""
import Queue
import random
from time import time
@ -32,9 +36,13 @@ def handleExpiredDandelion(expired):
class InvThread(StoppableThread):
"""A thread to manage inventory"""
name = "InvBroadcaster"
def handleLocallyGenerated(self, stream, hashId):
@staticmethod
def handleLocallyGenerated(stream, hashId):
"""Locally generated inventory items require special handling"""
Dandelion().addHash(hashId, stream=stream)
for connection in \
BMConnectionPool().inboundConnections.values() + \
@ -43,8 +51,8 @@ class InvThread(StoppableThread):
continue
connection.objectsNewToThem[hashId] = time()
def run(self):
while not state.shutdown:
def run(self): # pylint: disable=too-many-branches
while not state.shutdown: # pylint: disable=too-many-nested-blocks
chunk = []
while True:
# Dandelion fluff trigger by expiration