From 807ab43d5965acc74fda81edc7a3f2ea3638a2c0 Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Mon, 8 Jun 2020 17:31:06 -0500 Subject: [PATCH] PEP-8 style changes. --- modules/jenkins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/jenkins.py b/modules/jenkins.py index 091d4ee..d97d0bf 100755 --- a/modules/jenkins.py +++ b/modules/jenkins.py @@ -19,6 +19,7 @@ from jenkinsapi.custom_exceptions import NoBuildData from jenkinsapi.jenkins import Jenkins from os import getenv + class JenkinsModule: """Jenkins module for the Metrics program""" @@ -103,7 +104,6 @@ class JenkinsModule: nonpassing, failing, total = self._get_data() date = "strftime('%s', 'now')" - # Craft the str command = "INSERT INTO jenkins VALUES ({}, {}, {}, {});".format( date, nonpassing, failing, total)