Temporarily remove layers attribute from RawLayer until it can be fixed properly

This commit is contained in:
Darren Eberly
2020-06-06 17:47:41 -04:00
parent 200b227137
commit a2b0c2a312

View File

@@ -136,7 +136,10 @@ class RawChunk(TypedDict):
class RawLayer(TypedDict):
""" The keys and their types that appear in a Layer JSON Object."""
"""
FIXME Make the layers attribute function
The keys and their types that appear in a Layer JSON Object."""
chunks: List[RawChunk]
compression: str
@@ -146,7 +149,7 @@ class RawLayer(TypedDict):
height: int
id: int
image: str
layers: List[RawLayer]
# layers: List[RawLayer]
name: str
objects: List[RawTiledObject]
offsetx: float