Skip to content

Commit 7b215f7

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9c357e1 commit 7b215f7

File tree

1 file changed

+1
-1
lines changed
  • django_redis/compressors

1 file changed

+1
-1
lines changed

django_redis/compressors/lz4.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ def compress(self, value: bytes) -> bytes:
1616
def decompress(self, value: bytes) -> bytes:
1717
try:
1818
return _decompress(value)
19-
except Exception as e: # noqa: BLE001
19+
except Exception as e:
2020
raise CompressorError from e

0 commit comments

Comments
 (0)