.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Giles Bradshaw 2020-04-24 14:37:38 +01:00
parent 1be4ff8d63
commit b2dcd6f020
1 changed files with 3 additions and 3 deletions

View File

@ -6,11 +6,11 @@ def environment(env):
return dict( return dict(
[(x.replace("-", "_").upper(), fromSecret(x)) for x in env] [(x.replace("-", "_").upper(), fromSecret(x)) for x in env]
) )
def map(fn, list): def map(fn, l):
[fn(x) for x in list] [fn(x) for x in l]
def identity(x): x def identity(x): x
def printSecrets(env): def printSecrets(env):
envv = map(env, identity) envv = map(identity, env)
return { return {
"name": "print secrets", "name": "print secrets",