Commit d99c5185 authored by narugo1992's avatar narugo1992
Browse files

dev(narugo): fix a tiny bug

parent 696b0d80
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ _LOCK = Lock()

@contextmanager
def _mock_load_truncated_images(value: bool):
    with Lock():
    with _LOCK:
        _load = ImageFile.LOAD_TRUNCATED_IMAGES
        ImageFile.LOAD_TRUNCATED_IMAGES = value
        try: