Update to getattr()

This now a one-liner, compared to 6 lines originally.
And it should be (algorithmically) faster.
This commit is contained in:
mara004 2024-08-27 22:26:22 +02:00
parent 132464c0a1
commit 2b563c0982

View file

@ -1832,10 +1832,7 @@ def read_images(
)
else:
logger.debug("PIL format = %s", imgdata.format)
try:
imgformat = ImageFormat[imgdata.format]
except KeyError:
imgformat = ImageFormat.other
imgformat = getattr(ImageFormat, imgdata.format, ImageFormat.other)
def cleanup():
if imgdata is not None: