Skip to content

Commit 5fb6640

Browse files
run black
1 parent f5e40b2 commit 5fb6640

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

dvc/command/get.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,7 @@ def add_parser(subparsers, parent_parser):
5050
help="Path to a file or directory within the project or repository",
5151
)
5252
get_parser.add_argument(
53-
"-o",
54-
"--out",
55-
nargs="?",
56-
help="Destination path to download files to",
53+
"-o", "--out", nargs="?", help="Destination path to download files to"
5754
)
5855
get_parser.add_argument(
5956
"--rev", nargs="?", help="Git revision (e.g. branch, tag, SHA)"

dvc/command/imp.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ def run(self):
3030

3131
def add_parser(subparsers, parent_parser):
3232
IMPORT_HELP = (
33-
"Download a file or directory from any DVC project or Git repository and take it under "
34-
"DVC control."
33+
"Download a file or directory from any DVC project or Git repository"
34+
"and take it under DVC control."
3535
)
3636

3737
import_parser = subparsers.add_parser(
@@ -45,7 +45,10 @@ def add_parser(subparsers, parent_parser):
4545
"url",
4646
help="Location of DVC project or Git repository to download from",
4747
)
48-
import_parser.add_argument("path", help="Path to a file or directory within the project or repository")
48+
import_parser.add_argument(
49+
"path",
50+
help="Path to a file or directory within the project or repository",
51+
)
4952
import_parser.add_argument(
5053
"-o", "--out", nargs="?", help="Destination path to download files to"
5154
)

0 commit comments

Comments
 (0)