From f09abd1f48e503f1e91d8e192fe2f442cc2811b4 Mon Sep 17 00:00:00 2001 From: Benjamin Kirkbride Date: Tue, 2 Jun 2020 20:44:23 -0400 Subject: [PATCH] rf(tileset): underscore appended to attribute this is unnessesary for attributes, as it does not overwrite the built-in --- pytiled_parser/tileset.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pytiled_parser/tileset.py b/pytiled_parser/tileset.py index 15d4523..8d30e06 100644 --- a/pytiled_parser/tileset.py +++ b/pytiled_parser/tileset.py @@ -112,8 +112,8 @@ class Tile: animation: Each tile can have exactly one animation associated with it. """ - id_: int - type_: Optional[str] = None + id: int + type: Optional[str] = None terrain: Optional[TileTerrain] = None animation: Optional[List[Frame]] = None objectgroup: Optional[List[TiledObject]] = None