From: Hugh Brown Date: Thu, 10 Oct 2013 23:55:22 +0000 (-0400) Subject: Disable 'Unexpected keyword arg' error X-Git-Tag: v0.2.23~92^2~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5ea1d33e30330c0b75e8ad9eaa9c7a4437a9ad57;p=tools%2Fpython-jenkinsapi.git Disable 'Unexpected keyword arg' error --- 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.