diff --git a/dvc/command/get.py b/dvc/command/get.py index 7d5af18c79..30146010e5 100644 --- a/dvc/command/get.py +++ b/dvc/command/get.py @@ -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], @@ -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",