From 13a031791114131b340bc3a48ce605b312731960 Mon Sep 17 00:00:00 2001 From: Benjamin Kirkbride Date: Sat, 30 May 2020 20:21:49 -0400 Subject: [PATCH] fix(common_types): correct attribute name in docstring --- pytiled_parser/common_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytiled_parser/common_types.py b/pytiled_parser/common_types.py index 95c7196..9d88004 100644 --- a/pytiled_parser/common_types.py +++ b/pytiled_parser/common_types.py @@ -19,7 +19,7 @@ class Size(NamedTuple): Attributes: width: The width of the object. - size: The height of the object. + height: The height of the object. """ width: Union[int, float]