Commit 0c1d93e7 by Kevin Falcone

We still need to coerce into a string

Later, zip_to_dict calls ast.literal_eval which requires this be a
string.  We can remove this *and* the literal_eval call, however that
would require testing all the places we call these util functions.
parent 4ecca9f5
...@@ -159,7 +159,7 @@ def main(): ...@@ -159,7 +159,7 @@ def main():
arg_spec = dict( arg_spec = dict(
function=dict(required=True, type='str'), function=dict(required=True, type='str'),
input=dict(required=True), input=dict(required=True, type='str'),
args=dict(required=False, type='list'), args=dict(required=False, type='list'),
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment