diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5dad6a5..3f25c2c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -15,7 +15,7 @@ repos: ] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.4.1 + rev: v0.4.2 hooks: - id: ruff - id: ruff-format 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