From 98e12fecab59d1f340758565a20a06a962af1446 Mon Sep 17 00:00:00 2001 From: Paul O'Leary McCann Date: Mon, 5 Dec 2022 15:45:24 +0900 Subject: [PATCH] Remove orphaned error message --- spacy/errors.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/spacy/errors.py b/spacy/errors.py index 820f7352e..73e6f9323 100644 --- a/spacy/errors.py +++ b/spacy/errors.py @@ -250,8 +250,6 @@ class Errors(metaclass=ErrorsWithCodes): "https://spacy.io/usage/models") E011 = ("Unknown operator: '{op}'. Options: {opts}") E012 = ("Cannot add pattern for zero tokens to matcher.\nKey: {key}") - E016 = ("MultitaskObjective target should be function or one of: dep, " - "tag, ent, dep_tag_offset, ent_tag.") E017 = ("Can only add 'str' inputs to StringStore. Got type: {value_type}") E018 = ("Can't retrieve string for hash '{hash_value}'. This usually " "refers to an issue with the `Vocab` or `StringStore`.")