Skip to content

Commit

Permalink
cli: ls/import/get: fix help
Browse files Browse the repository at this point in the history
Leftover from #9747
  • Loading branch information
efiop committed Jul 20, 2023
1 parent 53ec0fa commit 41df96f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dvc/commands/get.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def add_parser(subparsers, parent_parser):
type=str,
help=(
"Path to a config file that will be merged with the config "
"in the target repository.",
"in the target repository."
),
)
get_parser.set_defaults(func=CmdGet)
2 changes: 1 addition & 1 deletion dvc/commands/imp.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def add_parser(subparsers, parent_parser):
type=str,
help=(
"Path to a config file that will be merged with the config "
"in the target repository.",
"in the target repository."
),
)
import_parser.set_defaults(func=CmdImport)
2 changes: 1 addition & 1 deletion dvc/commands/ls/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def add_parser(subparsers, parent_parser):
type=str,
help=(
"Path to a config file that will be merged with the config "
"in the target repository.",
"in the target repository."
),
)
list_parser.add_argument(
Expand Down

0 comments on commit 41df96f

Please sign in to comment.