Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
mlin committed Dec 4, 2018
1 parent 197b9c3 commit 81fc248
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion WDL/CLI.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def main(args=None):
"--no-quant-check",
dest="check_quant",
action="store_false",
help="relax static typechecking of optional (?) and nonempty (+) type quantifiers",
help="relax static typechecking of optional (?) and nonempty (+) type quantifiers (discouraged; for backwards compatibility with older WDL)",
)

args = parser.parse_args(args if args is not None else sys.argv[1:])
Expand Down
4 changes: 4 additions & 0 deletions test_corpi/contrived/check_quant.wdl
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
workflow bs {
Int? x
Int y = x
}

0 comments on commit 81fc248

Please sign in to comment.