diff --git a/signal_webhooks/utils.py b/signal_webhooks/utils.py index b52d647..7eca2d8 100644 --- a/signal_webhooks/utils.py +++ b/signal_webhooks/utils.py @@ -73,7 +73,7 @@ def decode_cipher_key(value: str = "") -> bytes: except TypeError as error: msg = "Cipher key not set." raise ValidationError(msg) from error - except Exception as error: # noqa: BLE001 + except Exception as error: msg = "Invalid cipher key." raise ValidationError(msg) from error