Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion dandi/cli/cmd_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@
)
@click.option(
"--validation",
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 "
"value other than 'require' is highly discouraged.) "
"'require' - data must pass validation before upload; "
"'skip' - no validation is performed on data before upload; "
"'ignore' - data is validated but upload proceeds regardless of validation results.",
type=click.Choice(list(UploadValidation)),
default="require",
show_default=True,
Expand Down