From 0011efdbc262f3c14e7a540538837cd1eb56bf54 Mon Sep 17 00:00:00 2001 From: Benjamin Kirkbride Date: Mon, 1 Jun 2020 21:01:23 -0400 Subject: [PATCH] fix(properties): Darren doesn't know how to use VSCode --- pytiled_parser/properties.py | 1 - 1 file changed, 1 deletion(-) 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]]