satisfy pycodestyle checker

This commit is contained in:
Wolfgang Hottgenroth
2022-02-22 14:58:11 +01:00
parent 9e28ffacde
commit 4b8a15b454
8 changed files with 27 additions and 27 deletions

View File

@ -5,6 +5,7 @@ from loguru import logger
from FlatDataObject import FlatDataObject
from StructuredDataObject import StructuredDataObject
class OpcUaRequester(threading.Thread):
def __init__(self, config, stats, queue):
super().__init__()
@ -25,7 +26,6 @@ class OpcUaRequester(threading.Thread):
self.killBill = False
self.killEvent = threading.Event()
async def opcUaRequesterInnerLoop(self):
while not self.killBill:
try:
@ -69,4 +69,3 @@ class OpcUaRequester(threading.Thread):
self.killEvent.set()
logger.info("kill events triggered")