From db2dbc8e59d1a61a0d16fea371925e4667c8dec9 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Fri, 14 Aug 2020 14:58:03 +0200 Subject: [PATCH] Remove unused warning --- spacy/errors.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/spacy/errors.py b/spacy/errors.py index c4eb4af28..26c0dba29 100644 --- a/spacy/errors.py +++ b/spacy/errors.py @@ -55,12 +55,6 @@ class Warnings: "loaded. (Shape: {shape})") W021 = ("Unexpected hash collision in PhraseMatcher. Matches may be " "incorrect. Modify PhraseMatcher._terminal_hash to fix.") - W022 = ("Training a new part-of-speech tagger using a model with no " - "lemmatization rules or data. This means that the trained model " - "may not be able to lemmatize correctly. If this is intentional " - "or the language you're using doesn't have lemmatization data, " - "you can ignore this warning. If this is surprising, make sure you " - "have the spacy-lookups-data package installed.") W024 = ("Entity '{entity}' - Alias '{alias}' combination already exists in " "the Knowledge Base.") W026 = ("Unable to set all sentence boundaries from dependency parses.")