Skip to content

Commit 6ccef90

Browse files
authored
Merge pull request #153 from common-workflow-language/argparser-double
add support for type=double to argparser generator
2 parents 9b6a8de + dbd77c5 commit 6ccef90

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

cwltool/main.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,8 @@ def generate_parser(toolparser, tool, namemap):
324324
atype = str
325325
elif inptype == "int":
326326
atype = int
327+
elif inptype == "double":
328+
atype = float
327329
elif inptype == "float":
328330
atype = float
329331
elif inptype == "boolean":

0 commit comments

Comments
 (0)