From cdbda0bbe17581295abf8af2ed7be9f7d1ec7e6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danie=CC=88l=20de=20Kok?= Date: Tue, 30 Aug 2022 10:23:25 +0200 Subject: [PATCH] Error E1400 is not used anymore This error was used when activations were still `Union[bool, List[str]]`. --- spacy/errors.py | 1 - 1 file changed, 1 deletion(-) diff --git a/spacy/errors.py b/spacy/errors.py index 0d4b08af1..2b67aa87b 100644 --- a/spacy/errors.py +++ b/spacy/errors.py @@ -941,7 +941,6 @@ class Errors(metaclass=ErrorsWithCodes): "`{arg2}`={arg2_values} but these arguments are conflicting.") E1043 = ("Expected None or a value in range [{range_start}, {range_end}] for entity linker threshold, but got " "{value}.") - E1400 = ("save_activations attribute must be set to List[str] or bool") # Deprecated model shortcuts, only used in errors and warnings