mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-18 12:06:08 +00:00
Disable pep8 errors
This commit is contained in:
parent
66f0edec5b
commit
1f8be77331
@ -62,7 +62,7 @@ class SerialMon(Instrument):
|
||||
if self._collector.collecting:
|
||||
self._collector.stop()
|
||||
data = self._collector.get_data()
|
||||
for l in data:
|
||||
for l in data: # noqa: E741
|
||||
context.add_artifact("{}_serial_log".format(identifier),
|
||||
l.path, kind="log")
|
||||
|
||||
|
@ -218,7 +218,7 @@ def version_tuple(v):
|
||||
return tuple(map(str, (v.split("."))))
|
||||
|
||||
|
||||
def module_name_set(l):
|
||||
def module_name_set(l): # noqa: E741
|
||||
"""
|
||||
Converts a list of target modules into a set of module names, disregarding
|
||||
any configuration that may be present.
|
||||
|
Loading…
Reference in New Issue
Block a user