Skip to content

Commit

Permalink
run black
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiosantoscode committed Jan 10, 2020
1 parent f5e40b2 commit 5fb6640
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
5 changes: 1 addition & 4 deletions dvc/command/get.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,7 @@ def add_parser(subparsers, parent_parser):
help="Path to a file or directory within the project or repository",
)
get_parser.add_argument(
"-o",
"--out",
nargs="?",
help="Destination path to download files to",
"-o", "--out", nargs="?", help="Destination path to download files to"
)
get_parser.add_argument(
"--rev", nargs="?", help="Git revision (e.g. branch, tag, SHA)"
Expand Down
9 changes: 6 additions & 3 deletions dvc/command/imp.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ def run(self):

def add_parser(subparsers, parent_parser):
IMPORT_HELP = (
"Download a file or directory from any DVC project or Git repository and take it under "
"DVC control."
"Download a file or directory from any DVC project or Git repository"
"and take it under DVC control."
)

import_parser = subparsers.add_parser(
Expand All @@ -45,7 +45,10 @@ def add_parser(subparsers, parent_parser):
"url",
help="Location of DVC project or Git repository to download from",
)
import_parser.add_argument("path", help="Path to a file or directory within the project or repository")
import_parser.add_argument(
"path",
help="Path to a file or directory within the project or repository",
)
import_parser.add_argument(
"-o", "--out", nargs="?", help="Destination path to download files to"
)
Expand Down

0 comments on commit 5fb6640

Please sign in to comment.