From e8732c3013254d5dbc2f41888ad835e15d784510 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Tue, 28 Feb 2023 16:33:34 +0000 Subject: [PATCH] Add property docstrings to Coordinate --- src/textual/coordinate.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/textual/coordinate.py b/src/textual/coordinate.py index a1285cf3e..e53590ef8 100644 --- a/src/textual/coordinate.py +++ b/src/textual/coordinate.py @@ -7,7 +7,10 @@ class Coordinate(NamedTuple): """An object representing a row/column coordinate within a grid.""" row: int + """The row of the coordinate within a grid.""" + column: int + """The column of the coordinate within a grid.""" def left(self) -> Coordinate: """Get the coordinate to the left.