Skip to content

Commit

Permalink
push/pull/fetch: unhide --run-cache
Browse files Browse the repository at this point in the history
  • Loading branch information
efiop committed Jun 23, 2020
1 parent 4181c0e commit 25403cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dvc/command/data_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def add_parser(subparsers, _parent_parser):
"--run-cache",
action="store_true",
default=False,
help=argparse.SUPPRESS,
help="Fetch run history for all stages.",
)
pull_parser.set_defaults(func=CmdDataPull)

Expand Down Expand Up @@ -228,7 +228,7 @@ def add_parser(subparsers, _parent_parser):
"--run-cache",
action="store_true",
default=False,
help=argparse.SUPPRESS,
help="Push run history for all stages.",
)
push_parser.set_defaults(func=CmdDataPush)

Expand Down Expand Up @@ -289,7 +289,7 @@ def add_parser(subparsers, _parent_parser):
"--run-cache",
action="store_true",
default=False,
help=argparse.SUPPRESS,
help="Fetch run history for all stages.",
)
fetch_parser.set_defaults(func=CmdDataFetch)

Expand Down

0 comments on commit 25403cd

Please sign in to comment.