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.
1 parent 17700e8 commit a0f9cf2Copy full SHA for a0f9cf2
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