Merge pull request #3422 from PySimpleGUI/Dev-latest

Fixed docstring error
This commit is contained in:
PySimpleGUI 2020-09-27 08:11:01 -04:00 committed by GitHub
commit eb1e358b37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -8580,8 +8580,8 @@ class Window:
""" """
Changes the minimum size of the window. Note Window must be read or finalized first. Changes the minimum size of the window. Note Window must be read or finalized first.
:param size: (width, height) of the desired window size :param size: (width, height) tuple (int, int) of the desired window size in pixels
:type size: Tuple[int, int)] :type size: Tuple[int, int]
""" """
if not self._is_window_created(): if not self._is_window_created():
return return