Skip to content

Commit b8c9589

Browse files
committed
fix syntax
1 parent 0538714 commit b8c9589

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/suite_objects.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2485,9 +2485,9 @@ def write(self, outfile, host_arglist, indent, const_mod,
24852485
call_vars = self.call_list.variable_list()
24862486
self._ddt_library.write_ddt_use_statements(call_vars, outfile,
24872487
indent+1, pad=modmax)
2488-
decl_vars = [x[0] for x in subpart_allocate_vars.values()] + \
2489-
[x[0] for x in subpart_scalar_vars.values()] + \
2490-
[x[0] for x in subpart_optional_vars.values()]
2488+
decl_vars = ([x[0] for x in subpart_allocate_vars.values()] +
2489+
[x[0] for x in subpart_scalar_vars.values()] +
2490+
[x[0] for x in subpart_optional_vars.values()])
24912491
self._ddt_library.write_ddt_use_statements(decl_vars, outfile,
24922492
indent+1, pad=modmax)
24932493
outfile.write('', 0)

0 commit comments

Comments
 (0)