Skip to content

Commit

Permalink
Restyled by black
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits committed Jan 10, 2020
1 parent 724283f commit 9f40606
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions dvc/command/get.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ def run(self):


def add_parser(subparsers, parent_parser):
GET_HELP = "Download a file or directory from any DVC project or Git repository"
GET_HELP = (
"Download a file or directory from any DVC project or Git repository"
)
get_parser = subparsers.add_parser(
"get",
parents=[parent_parser],
Expand All @@ -40,10 +42,12 @@ def add_parser(subparsers, parent_parser):
formatter_class=argparse.RawDescriptionHelpFormatter,
)
get_parser.add_argument(
"url", help="Location of DVC project or Git repository to download from"
"url",
help="Location of DVC project or Git repository to download from",
)
get_parser.add_argument(
"path", help="Path to a file or directory within the project or repository"
"path",
help="Path to a file or directory within the project or repository",
)
get_parser.add_argument(
"-o",
Expand Down

0 comments on commit 9f40606

Please sign in to comment.