Slightly simplify imgformat retrieval

No need for a loop here - we can access the enum like a dictionary,
which should be more efficient.
This commit is contained in:
mara004 2024-08-25 17:43:53 +02:00
parent 819b366bf5
commit 132464c0a1

View file

@ -1832,11 +1832,9 @@ def read_images(
) )
else: else:
logger.debug("PIL format = %s", imgdata.format) logger.debug("PIL format = %s", imgdata.format)
imgformat = None try:
for f in ImageFormat: imgformat = ImageFormat[imgdata.format]
if f.name == imgdata.format: except KeyError:
imgformat = f
if imgformat is None:
imgformat = ImageFormat.other imgformat = ImageFormat.other
def cleanup(): def cleanup():