Skip to content
Snippets Groups Projects
Commit 5bb2a115 authored by Jeremy Auguste's avatar Jeremy Auguste
Browse files

Fixed an issue with an iterator

parent 392a92c5
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ def load_variables(yaml_variables):
variable_names.append(name)
variables.append(values)
return variable_names, itertools.product(*variables)
return variable_names, list(itertools.product(*variables))
def load_flags(yaml_flags, args):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment