We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--validation
dandi upload
1 parent 07548d3 commit 65f37d9Copy full SHA for 65f37d9
dandi/cli/cmd_upload.py
@@ -39,7 +39,11 @@
39
)
40
@click.option(
41
"--validation",
42
- help="Data must pass validation before the upload. Use of this option is highly discouraged.",
+ help="Controls validation requirements before upload. (Setting this option to a "
43
+ "value other than 'require' is highly discouraged.) "
44
+ "'require' - data must pass validation before upload; "
45
+ "'skip' - no validation is performed on data before upload; "
46
+ "'ignore' - data is validated but upload proceeds regardless of validation results.",
47
type=click.Choice(list(UploadValidation)),
48
default="require",
49
show_default=True,
0 commit comments