From 3125b97ace251a900107188199ae29aa3085872e Mon Sep 17 00:00:00 2001 From: Ziad Amerr <70425741+ZiadAmerr@users.noreply.github.com> Date: Mon, 19 Jun 2023 14:31:08 +0300 Subject: [PATCH] Fixed e941 link rendering by removing the dot (#12735) --- spacy/errors.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spacy/errors.py b/spacy/errors.py index 987754bd2..a95f0c8a2 100644 --- a/spacy/errors.py +++ b/spacy/errors.py @@ -739,8 +739,8 @@ class Errors(metaclass=ErrorsWithCodes): "model from a shortcut, which is obsolete as of spaCy v3.0. To " "load the model, use its full name instead:\n\n" "nlp = spacy.load(\"{full}\")\n\nFor more details on the available " - "models, see the models directory: https://spacy.io/models. If you " - "want to create a blank model, use spacy.blank: " + "models, see the models directory: https://spacy.io/models and if " + "you want to create a blank model, use spacy.blank: " "nlp = spacy.blank(\"{name}\")") E942 = ("Executing `after_{name}` callback failed. Expected the function to " "return an initialized nlp object but got: {value}. Maybe "