Skip to content

Commit 388d77a

Browse files
committed
Fix typo
1 parent 8e8b09f commit 388d77a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltool/argparser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -906,7 +906,7 @@ def add_argument(
906906
items = inptype["items"]
907907
if items == "int" or items == "long":
908908
atype = int
909-
elif items == "double" or items == "fload":
909+
elif items == "double" or items == "float":
910910
atype = float
911911
elif isinstance(inptype, MutableMapping) and inptype["type"] == "enum":
912912
atype = str

0 commit comments

Comments
 (0)