mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-25 17:36:18 +03:00
enum can't be None
Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com>
This commit is contained in:
parent
98c7d90af6
commit
73bf04474f
|
@ -26,7 +26,7 @@ class _TagInfo(NamedTuple):
|
|||
name: str
|
||||
type: int | None
|
||||
length: int | None
|
||||
enum: dict[int, str] | None
|
||||
enum: dict[str, int]
|
||||
|
||||
|
||||
class TagInfo(_TagInfo):
|
||||
|
|
Loading…
Reference in New Issue
Block a user