From 9204b68b56f51f724ec43196a8cffdc72d545718 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 15:50:42 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- jenkinsapi/node.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/jenkinsapi/node.py b/jenkinsapi/node.py index 71904c81..33b62cb2 100644 --- a/jenkinsapi/node.py +++ b/jenkinsapi/node.py @@ -284,9 +284,7 @@ def launch(self) -> None: "It is not allowed to manually launch this node." ) - url = ( - self.baseurl + "/launchSlaveAgent" - ) + url = self.baseurl + "/launchSlaveAgent" html_result = self.jenkins.requester.post_and_confirm_status( url, data={} )