Skip to content

Commit 5ebdba2

Browse files
committed
Fix docstring
1 parent 0329b48 commit 5ebdba2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

curtsies/formatstringarray.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,13 @@ def shape(self):
142142
@property
143143
def height(self):
144144
# type: () -> int
145-
"The number of rows"
145+
"""The number of rows"""
146146
return len(self.rows)
147147

148148
@property
149149
def width(self):
150150
# type: () -> int
151-
"The number of columns"
151+
"""The number of columns"""
152152
return self.num_columns
153153

154154
# TODO rework this next major version bump

0 commit comments

Comments
 (0)