Merge pull request #2915 from PySimpleGUI/Dev-latest

Docstring fixup
This commit is contained in:
PySimpleGUI 2020-05-20 07:24:43 -04:00 committed by GitHub
commit bd413800b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/python3 #!/usr/bin/python3
version = __version__ = "4.19.0.7 Unreleased - Window.set_title added, removed resetting stdout when flush happens, fixed MenuBar tearoff not working, fixed get folder for Macs, fixed multiline color problem, option to set tooltip font, make typing module import optional" version = __version__ = "4.19.0.8 Unreleased - Window.set_title added, removed resetting stdout when flush happens, fixed MenuBar tearoff not working, fixed get folder for Macs, fixed multiline color problem, option to set tooltip font, make typing module import optional, docstring"
port = 'PySimpleGUI' port = 'PySimpleGUI'
@ -13774,6 +13774,8 @@ def PopupNonBlocking(*args, title=None, button_type=POPUP_BUTTONS_OK, button_col
:type grab_anywhere: (bool) :type grab_anywhere: (bool)
:param location: Location of upper left corner of the window :param location: Location of upper left corner of the window
:type location: Tuple[int, int] :type location: Tuple[int, int]
:return None
:rtype: None
""" """
Popup(*args, title=title, button_color=button_color, background_color=background_color, text_color=text_color, Popup(*args, title=title, button_color=button_color, background_color=background_color, text_color=text_color,
button_type=button_type, button_type=button_type,
@ -14669,6 +14671,8 @@ def PopupAnimated(image_source, message=None, background_color=None, text_color=
:type title: (str) :type title: (str)
:param icon: Same as Window icon parameter. Can be either a filename or Base64 value. For Windows if filename, it MUST be ICO format. For Linux, must NOT be ICO :param icon: Same as Window icon parameter. Can be either a filename or Base64 value. For Windows if filename, it MUST be ICO format. For Linux, must NOT be ICO
:type icon: str :type icon: str
:return: No return value
:rtype: None
""" """
if image_source is None: if image_source is None:
for image in Window._animated_popup_dict: for image in Window._animated_popup_dict: