Merge pull request #1793 from davep/dt-small-tweaks-redux

Remove type information from property docstring
This commit is contained in:
Will McGugan
2023-02-15 09:23:51 +00:00
committed by GitHub

View File

@@ -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