1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-06-18 14:26:09 +01:00

wa/utils: Fix pylint errors

This commit is contained in:
Marc Bonnici
2018-07-03 12:33:24 +01:00
parent 1550e9a788
commit 185bff9029
9 changed files with 19 additions and 17 deletions

@ -57,7 +57,7 @@ class LogcatParser(object):
if event:
yield event
def parse_line(self, line):
def parse_line(self, line): #pylint: disable=no-self-use
line = line.strip()
if not line or line.startswith('-') or ': ' not in line:
return None