Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 29, 2024
1 parent 84b5921 commit cc9db8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion signal_webhooks/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit cc9db8f

Please sign in to comment.