From 7fdf30b313f0dd0ed8523e768f53e97f60029097 Mon Sep 17 00:00:00 2001 From: kadarakos Date: Wed, 23 Nov 2022 10:50:13 +0100 Subject: [PATCH] Update spacy/cli/apply.py Co-authored-by: Sofie Van Landeghem --- spacy/cli/apply.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/spacy/cli/apply.py b/spacy/cli/apply.py index 442b53c32..6f8065576 100644 --- a/spacy/cli/apply.py +++ b/spacy/cli/apply.py @@ -14,16 +14,16 @@ from ..vocab import Vocab from ..util import ensure_path, load_model -path_help = ("Location of the documents to predict on." - "Can be a single file in .spacy format or " - ".jsonl file and files with other extensions" - "are treated as single plain text documents." +path_help = ("Location of the documents to predict on. " + "Can be a single file in .spacy format or a " + ".jsonl file. Files with other extensions " + "are treated as single plain text documents. " "If a directory is provided " "it is traversed recursively to grab all files to " - "be processed. The files can be a mixture of .spacy" + "be processed. The files can be a mixture of .spacy, " ".jsonl and text files. If .jsonl is provided the " - "specified field is going to be grabbed ('text') " - "by default.") + "specified field is going to be grabbed ('text' " + "by default).") out_help = "Path where to save the result .spacy file" code_help = ("Path to Python file with additional " "code (registered functions) to be imported")