From 718b4ec0a8729bb6bba6acca604b6d0bef502053 Mon Sep 17 00:00:00 2001 From: Benjamin Kirkbride Date: Sun, 7 Jun 2020 17:13:34 -0400 Subject: [PATCH] rf: tileset, not tile set --- pytiled_parser/map.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytiled_parser/map.py b/pytiled_parser/map.py index 7ec5702..cf85a7e 100644 --- a/pytiled_parser/map.py +++ b/pytiled_parser/map.py @@ -11,7 +11,7 @@ from .layer import Layer, RawLayer from .properties import Properties, RawProperty from .tileset import RawTileSet, TileSet -TileSetDict = Dict[int, TileSet] +TilesetDict = Dict[int, TileSet] @attr.s(auto_attribs=True)