clarify in comments

This commit is contained in:
Will McGugan
2022-03-29 15:20:05 +01:00
parent 85b6af5662
commit 83a66ca256

View File

@@ -612,7 +612,7 @@ class Spacing(NamedTuple):
@property
def totals(self) -> tuple[int, int]:
"""Total spacing for horizontal and vertical spacing."""
"""Returns a tuple of (<HORIZONTAL SPACE>, <VERTICAL SPACE>)."""
top, right, bottom, left = self
return (left + right, top + bottom)