Skip to content

Commit

Permalink
Add missing overflow arg in add_column docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
paw-lu committed Jul 10, 2021
1 parent 8a8a463 commit 45f8ad1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions rich/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,7 @@ def add_column(
footer_style (Union[str, Style], optional): Style for the footer, or None for default. Defaults to None.
style (Union[str, Style], optional): Style for the column cells, or None for default. Defaults to None.
justify (JustifyMethod, optional): Alignment for cells. Defaults to "left".
overflow (OverflowMethod): Overflow method: "crop", "fold", "ellipsis". Defaults to "ellipsis".
width (int, optional): Desired width of column in characters, or None to fit to contents. Defaults to None.
min_width (Optional[int], optional): Minimum width of column, or ``None`` for no minimum. Defaults to None.
max_width (Optional[int], optional): Maximum width of column, or ``None`` for no maximum. Defaults to None.
Expand Down

0 comments on commit 45f8ad1

Please sign in to comment.