mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-09-02 11:22:41 +01:00
framework: fix pylint issues
Fix/disable checks for issues reported by pylint under wa/framework.
This commit is contained in:
committed by
Marc Bonnici
parent
9025ea32b1
commit
f74b7ae78c
@@ -139,7 +139,7 @@ class ProcessorManager(object):
|
||||
try:
|
||||
self.logger.info(message.format(proc.name))
|
||||
proc_func(*args)
|
||||
except Exception as e:
|
||||
except Exception as e: # pylint: disable=broad-except
|
||||
if isinstance(e, KeyboardInterrupt):
|
||||
raise
|
||||
log_error(e, self.logger)
|
||||
@@ -155,4 +155,3 @@ class ProcessorManager(object):
|
||||
self.logger.debug('Disabling output processor {}'.format(inst.name))
|
||||
if inst.is_enabled:
|
||||
inst.is_enabled = False
|
||||
|
||||
|
Reference in New Issue
Block a user