rf(map): don't mess with the default of the format

This commit is contained in:
Benjamin Kirkbride
2020-06-06 18:00:50 -04:00
parent c81785eb77
commit f9d1ca9893

View File

@@ -43,8 +43,7 @@ class Map:
background_color: The background color of the map.
next_layer_id: Stores the next available ID for new layers.
next_object_id: Stores the next available ID for new objects.
tile_sets: Dict of tile sets used in this map. Key is the first GID for the
tile set. The value is a TileSet object.
tile_sets: Tilesets used in this map.
layers: List of layer objects by draw order.
"""
@@ -61,7 +60,7 @@ class Map:
next_layer_id: Optional[int]
next_object_id: int
tile_sets: TileSetDict
tile_sets: List[TileSet]
layers: List[Layer]
hex_side_length: Optional[int] = None