Skip to content

Commit 3d7ef75

Browse files
author
Peter Amstutz
committed
Fix --skip-schemas default.
1 parent b899a5f commit 3d7ef75

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
@@ -144,7 +144,7 @@ def arg_parser(): # type: () -> argparse.ArgumentParser
144144
default=True, dest="strict")
145145

146146
parser.add_argument("--skip-schemas", action="store_true",
147-
help="Skip loading of schemas", default=True, dest="skip_schemas")
147+
help="Skip loading of schemas", default=False, dest="skip_schemas")
148148

149149
exgroup = parser.add_mutually_exclusive_group()
150150
exgroup.add_argument("--verbose", action="store_true", help="Default logging")

0 commit comments

Comments
 (0)