1
0
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:
Marc Bonnici 2020-05-13 11:22:48 +01:00
parent 66f0edec5b
commit 1f8be77331
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ class SerialMon(Instrument):
if self._collector.collecting: if self._collector.collecting:
self._collector.stop() self._collector.stop()
data = self._collector.get_data() data = self._collector.get_data()
for l in data: for l in data: # noqa: E741
context.add_artifact("{}_serial_log".format(identifier), context.add_artifact("{}_serial_log".format(identifier),
l.path, kind="log") l.path, kind="log")

View File

@ -218,7 +218,7 @@ def version_tuple(v):
return tuple(map(str, (v.split(".")))) 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 Converts a list of target modules into a set of module names, disregarding
any configuration that may be present. any configuration that may be present.