Merge pull request #5853 from PySimpleGUI/Dev-latest

Fix for docstring - type should have been int not bool for new starti…
This commit is contained in:
PySimpleGUI 2022-09-10 19:34:08 -04:00 committed by GitHub
commit fb61584c0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 # :param display_row_numbers: if True, the first column of the table will be the row #
:type display_row_numbers: (bool) :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. :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 :param num_rows: The number of rows of the table to display at a time
:type num_rows: (int) :type num_rows: (int)
:param row_height: height of a single row in pixels :param row_height: height of a single row in pixels