mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-12 18:26:17 +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
|
name: str
|
||||||
type: int | None
|
type: int | None
|
||||||
length: int | None
|
length: int | None
|
||||||
enum: dict[int, str] | None
|
enum: dict[str, int]
|
||||||
|
|
||||||
|
|
||||||
class TagInfo(_TagInfo):
|
class TagInfo(_TagInfo):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user