From f24d4b585c542cfd6feefee20dd8e91baac802af Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Sat, 10 Sep 2022 19:33:50 -0400 Subject: [PATCH] Fix for docstring - type should have been int not bool for new starting_row_number parm --- PySimpleGUI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PySimpleGUI.py b/PySimpleGUI.py index f8ee474f..1ef4b227 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -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