read_info_from_image: add type

This commit is contained in:
Aarni Koskela 2023-07-03 13:10:20 +03:00
parent b2c574891f
commit 96f0593c8f

View File

@ -1,3 +1,5 @@
from __future__ import annotations
import datetime
import pytz
@ -669,7 +671,7 @@ IGNORED_INFO_KEYS = {
}
def read_info_from_image(image):
def read_info_from_image(image: Image.Image) -> tuple[str | None, dict]:
items = image.info or {}
geninfo = items.pop('parameters', None)