diff --git a/pytiled_parser/properties.py b/pytiled_parser/properties.py index 9e198af..53d89e6 100644 --- a/pytiled_parser/properties.py +++ b/pytiled_parser/properties.py @@ -4,7 +4,6 @@ from typing import Dict, List, NamedTuple, Optional, Union from .common_types import Color Property = Union[int, float, Path, str, bool, Color] -class RawProperties = List[Dict[str, Property]]