From 95ba4b6bad2ce7de38847778002ce29faa4a1a50 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Wed, 15 Feb 2023 08:52:11 +0000 Subject: [PATCH] Remove type information from property docstring --- src/textual/widgets/_data_table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/textual/widgets/_data_table.py b/src/textual/widgets/_data_table.py index b9e48d326..181688d1f 100644 --- a/src/textual/widgets/_data_table.py +++ b/src/textual/widgets/_data_table.py @@ -168,7 +168,7 @@ class Column: @property def render_width(self) -> int: - """int: Width in cells, required to render a column.""" + """Width in cells, required to render a column.""" # +2 is to account for space padding either side of the cell if self.auto_width: return self.content_width + 2