This is a list comprehension, it already results in a list. There is no need to wrap it in the list() constructor call.
Signed-off-by: Dylan Baker <[email protected]> --- framework/programs/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/programs/run.py b/framework/programs/run.py index b30b292..be3bd3e 100644 --- a/framework/programs/run.py +++ b/framework/programs/run.py @@ -324,7 +324,7 @@ def run(input_): with open(args.test_list) as test_list: # Strip newlines - profiles[0].forced_test_list = list([t.strip() for t in test_list]) + profiles[0].forced_test_list = [t.strip() for t in test_list] # Set the dmesg type if args.dmesg: -- git-series 0.8.10 _______________________________________________ Piglit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/piglit
