From 5ea1d33e30330c0b75e8ad9eaa9c7a4437a9ad57 Mon Sep 17 00:00:00 2001 From: Hugh Brown Date: Thu, 10 Oct 2013 19:55:22 -0400 Subject: [PATCH] Disable 'Unexpected keyword arg' error --- jenkinsapi/job.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jenkinsapi/job.py b/jenkinsapi/job.py index 8986cd5..73faa4b 100644 --- a/jenkinsapi/job.py +++ b/jenkinsapi/job.py @@ -79,6 +79,8 @@ class Job(JenkinsBase, MutableJenkinsThing): data = self._add_missing_builds(data) return data + # pylint: disable=E1123 + # Unexpected keyword arg 'params' def _add_missing_builds(self, data): '''Query Jenkins to get all builds of the job in the data object. -- 2.7.4