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 committed by Johannes Schauer Marin Rodrigues
parent 23436114f8
commit b6dbfdb481
Signed by: josch
GPG key ID: F2CBA5C78FBD83E1

View file

@ -1935,12 +1935,7 @@ def read_images(
)
else:
logger.debug("PIL format = %s", imgdata.format)
imgformat = None
for f in ImageFormat:
if f.name == imgdata.format:
imgformat = f
if imgformat is None:
imgformat = ImageFormat.other
imgformat = getattr(ImageFormat, imgdata.format, ImageFormat.other)
def cleanup():
if imgdata is not None: