mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 18:06:18 +03:00
Got the order of the enums wrong
This commit is contained in:
parent
4596df45c1
commit
70977bcbb5
|
@ -157,7 +157,7 @@ TAGS_V2 = {
|
||||||
45580: ("PitchAngle", 10, 1),
|
45580: ("PitchAngle", 10, 1),
|
||||||
45581: ("RollAngle", 10, 1),
|
45581: ("RollAngle", 10, 1),
|
||||||
|
|
||||||
50741: ("MakerNoteSafety", 3, 1, {0: "Unsafe", 1: "Safe"}),
|
50741: ("MakerNoteSafety", 3, 1, {"Unsafe": 0, "Safe": 1}),
|
||||||
50780: ("BestQualityScale", 5, 1),
|
50780: ("BestQualityScale", 5, 1),
|
||||||
50838: ("ImageJMetaDataByteCounts", 4, 1),
|
50838: ("ImageJMetaDataByteCounts", 4, 1),
|
||||||
50839: ("ImageJMetaData", 7, 1)
|
50839: ("ImageJMetaData", 7, 1)
|
||||||
|
@ -168,8 +168,8 @@ def _populate():
|
||||||
# Populate legacy structure.
|
# Populate legacy structure.
|
||||||
TAGS[k] = v[0]
|
TAGS[k] = v[0]
|
||||||
if len(v) == 4:
|
if len(v) == 4:
|
||||||
for sk,sv in v[3].items():
|
for sk, sv in v[3].items():
|
||||||
TAGS[(k,sk)] = sv
|
TAGS[(k, sv)] = sk
|
||||||
|
|
||||||
TAGS_V2[k] = TagInfo(k, *v)
|
TAGS_V2[k] = TagInfo(k, *v)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user