Remove unused W400 warning.

This warning was used when we still allowed the user to specify
which activations to save.
This commit is contained in:
Daniël de Kok 2022-08-31 11:23:13 +02:00
parent cd6e4fa8f4
commit 2593dadbe4

View File

@ -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):