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 5934146 commit 2d6fe6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_redis/compressors/lz4.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ def compress(self, value: bytes) -> bytes:
def decompress(self, value: bytes) -> bytes:
try:
return _decompress(value)
except Exception as e: # noqa: BLE001
except Exception as e:
raise CompressorError from e

0 comments on commit 2d6fe6d

Please sign in to comment.