diff --git a/src/PIL/EpsImagePlugin.py b/src/PIL/EpsImagePlugin.py index b9fab424af9..7d45add907b 100644 --- a/src/PIL/EpsImagePlugin.py +++ b/src/PIL/EpsImagePlugin.py @@ -330,7 +330,9 @@ def check_required_header_comments(): # binary/ascii (1: binary, 2: ascii) # data start identifier (the data follows after a single line which solely consists of this quoted value) image_data_values = byte_arr[11:bytes_read].split(None, 7) - columns, rows, bit_depth, mode_id = [int(value) for value in image_data_values[:4]] + columns, rows, bit_depth, mode_id = [ + int(value) for value in image_data_values[:4] + ] if bit_depth == 1: self.mode = "1"