Skip to content

Commit

Permalink
Disable pep8 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
marcbonnici committed May 13, 2020
1 parent 66f0ede commit 1f8be77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wa/instruments/serialmon.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def stop_logging(self, context, identifier="job"):
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")

Expand Down
2 changes: 1 addition & 1 deletion wa/utils/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 1f8be77

Please sign in to comment.