From 0de74fc9eb78714ee5f1f66dd1ab5dfa9836faeb Mon Sep 17 00:00:00 2001 From: Benjamin Kirkbride Date: Thu, 20 Aug 2020 18:33:57 -0400 Subject: [PATCH] docs(common_types.size): clarify unit --- pytiled_parser/common_types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pytiled_parser/common_types.py b/pytiled_parser/common_types.py index c560bdb..c26c5a1 100644 --- a/pytiled_parser/common_types.py +++ b/pytiled_parser/common_types.py @@ -18,8 +18,8 @@ class Size(NamedTuple): """Size NamedTuple. Attributes: - width: The width of the object. - height: The height of the object. + width: The width of the object in pixels. + height: The height of the object in pixels. """ width: float