Rename flatten funciton.
flatten(x) is used a lot in the various lookup plugins where in each it is slightly different. This is to make this name slightly more unique.
This commit is contained in:
parent
0cca4a3919
commit
af616fe15e
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ from ansible.utils import safe_eval
|
||||||
import ansible.utils as utils
|
import ansible.utils as utils
|
||||||
import ansible.errors as errors
|
import ansible.errors as errors
|
||||||
|
|
||||||
def flatten(terms):
|
def flatten_hash_to_list(terms):
|
||||||
ret = []
|
ret = []
|
||||||
for key in terms:
|
for key in terms:
|
||||||
ret.append({'key': key, 'value': terms[key]})
|
ret.append({'key': key, 'value': terms[key]})
|
||||||
|
@ -36,4 +36,4 @@ class LookupModule(object):
|
||||||
if not isinstance(terms, dict):
|
if not isinstance(terms, dict):
|
||||||
raise errors.AnsibleError("with_dict expects a dict")
|
raise errors.AnsibleError("with_dict expects a dict")
|
||||||
|
|
||||||
return flatten(terms)
|
return flatten_hash_to_list(terms)
|
||||||
|
|
Loading…
Reference in a new issue