From fab38805d0bdb9e4ffa53100608a8b09772b01d6 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Thu, 1 Aug 2019 00:50:59 +1000 Subject: [PATCH] Fixed lint error --- src/PIL/TiffImagePlugin.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/PIL/TiffImagePlugin.py b/src/PIL/TiffImagePlugin.py index 3d8eaede785..d6361bfc562 100644 --- a/src/PIL/TiffImagePlugin.py +++ b/src/PIL/TiffImagePlugin.py @@ -775,7 +775,9 @@ def load(self, fp): 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)