From 0786bfaa1250b9248cc142cc9ffd1efed09c12dd Mon Sep 17 00:00:00 2001 From: Aleksey Maksimov Date: Wed, 24 Sep 2014 23:11:55 +0800 Subject: [PATCH] Pylint fixes --- jenkinsapi/custom_exceptions.py | 2 +- jenkinsapi/job.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/jenkinsapi/custom_exceptions.py b/jenkinsapi/custom_exceptions.py index 4573cd7..66f8216 100644 --- a/jenkinsapi/custom_exceptions.py +++ b/jenkinsapi/custom_exceptions.py @@ -1,6 +1,6 @@ """Module for custom_exceptions. -Where possible we try to throw exceptions with non-generic, +Where possible we try to throw exceptions with non-generic, meaningful names. """ diff --git a/jenkinsapi/job.py b/jenkinsapi/job.py index ae599a7..0ecd54d 100644 --- a/jenkinsapi/job.py +++ b/jenkinsapi/job.py @@ -195,8 +195,7 @@ class Job(JenkinsBase, MutableJenkinsThing): # Build require params as form fields # and as Json. - data = {'json': self.mk_json_from_build_parameters( - build_params, files)} + data = {'json': self.mk_json_from_build_parameters(build_params, files)} data.update(build_params) response = self.jenkins.requester.post_and_confirm_status( -- 2.34.1