From 2593dadbe4e487dab8eecef904c2c3da5b0f9606 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danie=CC=88l=20de=20Kok?= Date: Wed, 31 Aug 2022 11:23:13 +0200 Subject: [PATCH] Remove unused W400 warning. This warning was used when we still allowed the user to specify which activations to save. --- spacy/errors.py | 1 - 1 file changed, 1 deletion(-) diff --git a/spacy/errors.py b/spacy/errors.py index 2b67aa87b..608305a06 100644 --- a/spacy/errors.py +++ b/spacy/errors.py @@ -212,7 +212,6 @@ class Warnings(metaclass=ErrorsWithCodes): W121 = ("Attempting to trace non-existent method '{method}' in pipe '{pipe}'") W122 = ("Couldn't trace method '{method}' in pipe '{pipe}'. This can happen if the pipe class " "is a Cython extension type.") - W400 = ("Activation '{activation}' is unknown for pipe '{pipe_name}'") class Errors(metaclass=ErrorsWithCodes):