mirror of https://github.com/Textualize/rich.git
Merge pull request #3276 from MichaelYochpaz/master
Fix `leading` Parameter Type In Docstring
This commit is contained in:
commit
0d7e598fe7
|
@ -54,7 +54,7 @@ class Column:
|
|||
show_footer (bool, optional): Show a footer row. Defaults to False.
|
||||
show_edge (bool, optional): Draw a box around the outside of the table. Defaults to True.
|
||||
show_lines (bool, optional): Draw lines between every row. Defaults to False.
|
||||
leading (bool, optional): Number of blank lines between rows (precludes ``show_lines``). Defaults to 0.
|
||||
leading (int, optional): Number of blank lines between rows (precludes ``show_lines``). Defaults to 0.
|
||||
style (Union[str, Style], optional): Default style for the table. Defaults to "none".
|
||||
row_styles (List[Union, str], optional): Optional list of row styles, if more than one style is given then the styles will alternate. Defaults to None.
|
||||
header_style (Union[str, Style], optional): Style of the header. Defaults to "table.header".
|
||||
|
@ -167,7 +167,7 @@ class Table(JupyterMixin):
|
|||
show_footer (bool, optional): Show a footer row. Defaults to False.
|
||||
show_edge (bool, optional): Draw a box around the outside of the table. Defaults to True.
|
||||
show_lines (bool, optional): Draw lines between every row. Defaults to False.
|
||||
leading (bool, optional): Number of blank lines between rows (precludes ``show_lines``). Defaults to 0.
|
||||
leading (int, optional): Number of blank lines between rows (precludes ``show_lines``). Defaults to 0.
|
||||
style (Union[str, Style], optional): Default style for the table. Defaults to "none".
|
||||
row_styles (List[Union, str], optional): Optional list of row styles, if more than one style is given then the styles will alternate. Defaults to None.
|
||||
header_style (Union[str, Style], optional): Style of the header. Defaults to "table.header".
|
||||
|
|
Loading…
Reference in New Issue