From 55b16166c852a72e8dd47d4e32090063d27497e4 Mon Sep 17 00:00:00 2001 From: skshetry Date: Thu, 8 Sep 2022 23:09:10 +0545 Subject: [PATCH] add/import/import-url: update help message for labels/type/desc (#8271) --- dvc/commands/add.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/dvc/commands/add.py b/dvc/commands/add.py index 8c9aeb842a..5b7c6549af 100644 --- a/dvc/commands/add.py +++ b/dvc/commands/add.py @@ -14,17 +14,14 @@ def _add_annotating_args(parser: argparse.ArgumentParser) -> None: "--desc", type=str, metavar="", - help=( - "User description of the data (optional). " - "This doesn't affect any DVC operations." - ), + help="User description of the data.", ) parser.add_argument( "--meta", metavar="key=value", nargs=1, action=KeyValueArgs, - help="Custom metadata to add to the data", + help="Custom metadata to add to the data.", ) parser.add_argument( "--label", @@ -32,13 +29,13 @@ def _add_annotating_args(parser: argparse.ArgumentParser) -> None: type=str, action="append", metavar="", - help="Comma separated list of labels for the data (optional).", + help="Label for the data.", ) parser.add_argument( "--type", type=str, metavar="", - help="Type of the data (optional).", + help="Type of the data.", )