From cebe50b5b8409b006b498b6bb21981085f171fc7 Mon Sep 17 00:00:00 2001 From: Maxim Kupfer Date: Mon, 10 Sep 2018 02:31:49 -0700 Subject: [PATCH] Remove ')' for clarity (#2737) Sorry, don't mean to be nitpicky, I just noticed this when going through the CLI and thought it was a quick fix. That said, if this was intention than please let me know. --- spacy/cli/download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/cli/download.py b/spacy/cli/download.py index ec5043562..82c810fcb 100644 --- a/spacy/cli/download.py +++ b/spacy/cli/download.py @@ -14,7 +14,7 @@ from .. import about @plac.annotations( - model=("model to download, shortcut or name)", "positional", None, str), + model=("model to download, shortcut or name", "positional", None, str), direct=("force direct download. Needs model name with version and won't " "perform compatibility check", "flag", "d", bool), pip_args=("additional arguments to be passed to `pip install` when "