Skip to content

Commit

Permalink
completions: fix run command outputs autocompletion
Browse files Browse the repository at this point in the history
  • Loading branch information
geblanco committed Oct 5, 2020
1 parent 17e1eb6 commit fa89ea5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dvc/command/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def add_parser(subparsers, parent_parser):
default=[],
help="Declare output file or directory.",
metavar="<filename>",
)
).complete = completion.FILE
run_parser.add_argument(
"-O",
"--outs-no-cache",
Expand All @@ -120,7 +120,7 @@ def add_parser(subparsers, parent_parser):
help="Declare output file or directory "
"(do not put into DVC cache).",
metavar="<filename>",
)
).complete = completion.FILE
run_parser.add_argument(
"-p",
"--params",
Expand Down

0 comments on commit fa89ea5

Please sign in to comment.