Skip to content

Commit dbd77c5

Browse files
committed
add support for type=double to argparser generator
1 parent d77b058 commit dbd77c5

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)