Fix for docstring - type should have been int not bool for new starting_row_number parm

This commit is contained in:
PySimpleGUI 2022-09-10 19:33:50 -04:00
parent c64022522e
commit f24d4b585c
1 changed files with 1 additions and 1 deletions

View File

@ -8729,7 +8729,7 @@ class Table(Element):
:param display_row_numbers: if True, the first column of the table will be the row #
:type display_row_numbers: (bool)
:param starting_row_number: The row number to use for the first row. All following rows will be based on this starting value. Default is 0.
:type starting_row_number: (bool)
:type starting_row_number: (int)
:param num_rows: The number of rows of the table to display at a time
:type num_rows: (int)
:param row_height: height of a single row in pixels