Disable 'Unexpected keyword arg' error
authorHugh Brown <hbrown@amplify.com>
Thu, 10 Oct 2013 23:55:22 +0000 (19:55 -0400)
committerHugh Brown <hbrown@amplify.com>
Thu, 10 Oct 2013 23:55:22 +0000 (19:55 -0400)
jenkinsapi/job.py

index 8986cd5..73faa4b 100644 (file)
@@ -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.