We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d0a758 commit 267a90cCopy full SHA for 267a90c
wdlgen/workflow.py
@@ -51,9 +51,9 @@ def get_string(self):
51
for i in self.inputs:
52
wd = i.get_string()
53
if isinstance(wd, list):
54
- ins.extend(tb + ii for ii in wd)
+ ins.extend(2 * tb + ii for ii in wd)
55
else:
56
- ins.append(tb + wd)
+ ins.append(2 * tb + wd)
57
inputs_block = f"{tb}input {{\n" + "\n".join(ins) + f"\n{tb}}}"
58
59
if self.outputs:
0 commit comments