From d64644d9d1f353fbb7167a93ed8d2b79c7a66864 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Tue, 30 Jun 2020 20:36:30 +0200 Subject: [PATCH] Adjust auto-formatting --- spacy/cli/project.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spacy/cli/project.py b/spacy/cli/project.py index 4cda55956..cba8a07dc 100644 --- a/spacy/cli/project.py +++ b/spacy/cli/project.py @@ -88,9 +88,11 @@ def project_clone_cli( @project_cli.command("init") def project_init_cli( + # fmt: off path: Path = Arg(Path.cwd(), help="Path to cloned project. Defaults to current working directory.", exists=True, file_okay=False), git: bool = Opt(False, "--git", "-G", help="Initialize project as a Git repo"), force: bool = Opt(False, "--force", "-F", help="Force initiziation"), + # fmt: on ): """Initialize a project directory with DVC and optionally Git. This should typically be taken care of automatically when you run the "project clone"