Skip to content

Commit b06d460

Browse files
committed
Docstring fixup
1 parent d5e0dc8 commit b06d460

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

PySimpleGUI.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/python3
22

3-
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"
3+
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"
44

55
port = 'PySimpleGUI'
66

@@ -13774,6 +13774,8 @@ def PopupNonBlocking(*args, title=None, button_type=POPUP_BUTTONS_OK, button_col
1377413774
:type grab_anywhere: (bool)
1377513775
:param location: Location of upper left corner of the window
1377613776
:type location: Tuple[int, int]
13777+
:return None
13778+
:rtype: None
1377713779
"""
1377813780
Popup(*args, title=title, button_color=button_color, background_color=background_color, text_color=text_color,
1377913781
button_type=button_type,
@@ -14669,6 +14671,8 @@ def PopupAnimated(image_source, message=None, background_color=None, text_color=
1466914671
:type title: (str)
1467014672
: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
1467114673
:type icon: str
14674+
:return: No return value
14675+
:rtype: None
1467214676
"""
1467314677
if image_source is None:
1467414678
for image in Window._animated_popup_dict:

0 commit comments

Comments
 (0)