Formatting: fix some missed `fmt`

Change-Id: I4ed156fa5a7aae702c5818c23886cb8830098a90
This commit is contained in:
Mark Burnett 2017-10-26 10:11:21 -05:00
parent e56ad622c3
commit b9c17f34dc
1 changed files with 4 additions and 4 deletions

View File

@ -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):