Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Dave Berenbaum <[email protected]>
  • Loading branch information
skshetry and dberenbaum authored Sep 16, 2021
1 parent e1996e0 commit 04c09f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dvc/command/experiments.py
Original file line number Diff line number Diff line change
Expand Up @@ -1360,7 +1360,7 @@ def add_parser(subparsers, parent_parser):
)
experiments_remove_parser.set_defaults(func=CmdExperimentsRemove)

EXPERIMENTS_INIT_HELP = "Create experiments."
EXPERIMENTS_INIT_HELP = "Initialize experiments."
experiments_init_parser = experiments_subparsers.add_parser(
"init",
parents=[parent_parser],
Expand Down Expand Up @@ -1396,12 +1396,12 @@ def add_parser(subparsers, parent_parser):
experiments_init_parser.add_argument(
"--code",
help="Path to the source file or directory "
"which your experiment depends",
"which your experiments depend",
)
experiments_init_parser.add_argument(
"--data",
help="Path to the data file or directory "
"which your experiment depends",
"which your experiments depend",
)
experiments_init_parser.add_argument(
"--models",
Expand Down

0 comments on commit 04c09f2

Please sign in to comment.