From b9c17f34dc812ebe2d7eed2ec3636c15982c9bd2 Mon Sep 17 00:00:00 2001 From: Mark Burnett Date: Thu, 26 Oct 2017 10:11:21 -0500 Subject: [PATCH] Formatting: fix some missed `fmt` Change-Id: I4ed156fa5a7aae702c5818c23886cb8830098a90 --- promenade/pki.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/promenade/pki.py b/promenade/pki.py index 946212e9..2cb15f45 100644 --- a/promenade/pki.py +++ b/promenade/pki.py @@ -97,8 +97,8 @@ class PKI: f.write(data) return json.loads( - subprocess.check_output(['cfssl'] + command, cwd=tmp, - stderr=subprocess.PIPE)) + subprocess.check_output( + ['cfssl'] + command, cwd=tmp, stderr=subprocess.PIPE)) def _openssl(self, command, *, files=None): if not files: @@ -109,8 +109,8 @@ class PKI: with open(os.path.join(tmp, filename), 'w') as f: f.write(data) - subprocess.check_call(['openssl'] + command, cwd=tmp, - stderr=subprocess.PIPE) + subprocess.check_call( + ['openssl'] + command, cwd=tmp, stderr=subprocess.PIPE) result = {} for filename in os.listdir(tmp):