Fixed lint error

This commit is contained in:
Andrew Murray 2019-08-01 00:50:59 +10:00
parent 9c7d3a0e4a
commit fab38805d0

View File

@ -775,7 +775,9 @@ class ImageFileDirectory_v2(MutableMapping):
fp.seek(offset)
except OverflowError as e:
if DEBUG:
print("- offset value wrong. Possibly corrupt EXIF data. ", e)
print(
"- offset value wrong. Possibly corrupt EXIF data. ", e
)
continue # ignore corrupt EXIF data
data = ImageFile._safe_read(fp, size)
fp.seek(here)