From 6fc247a8fd534e0f2f5a4fd882eec4a97940467c Mon Sep 17 00:00:00 2001 From: Brendan Jackman Date: Wed, 6 Dec 2017 15:04:30 +0000 Subject: [PATCH] framework/output: Calm pylint --- wa/framework/output.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wa/framework/output.py b/wa/framework/output.py index f63e3761..ac50a4fa 100644 --- a/wa/framework/output.py +++ b/wa/framework/output.py @@ -211,6 +211,7 @@ class JobOutput(Output): kind = 'job' + # pylint: disable=redefined-builtin def __init__(self, path, id, label, iteration, retry): super(JobOutput, self).__init__(path) self.id = id @@ -233,6 +234,7 @@ class Result(object): return instance def __init__(self): + # pylint: disable=no-member self.status = Status.NEW self.metrics = [] self.artifacts = []