We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 17700e8 + a0f9cf2 commit c7c9e3eCopy full SHA for c7c9e3e
pytiled_parser/parsers/tmx/properties.py
@@ -14,7 +14,7 @@ def parse(raw_properties: etree.Element) -> Properties:
14
for raw_property in raw_properties.findall("property"):
15
16
type_ = raw_property.attrib.get("type")
17
- value_ = raw_property.attrib["value"]
+ value_ = raw_property.attrib.get("value")
18
if type_ == "file":
19
value = Path(value_)
20
elif type_ == "color":
0 commit comments