@@ -61,7 +61,7 @@ Display a message in a popup window with OK and Cancel buttons. Return True or F
6161def ask_ok_cancel (message : str , title : str = " Question" ) -> bool :
6262```
6363
64- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1620 )
64+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1622 )
6565
6666## ask_retry_cancel
6767
@@ -71,7 +71,7 @@ Display a message in a popup window with Retry and Cancel buttons. Return True o
7171def ask_retry_cancel (message : str , title : str = " Question" ) -> bool :
7272```
7373
74- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1625 )
74+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1627 )
7575
7676## ask_yes_no
7777
@@ -81,7 +81,7 @@ Display a message in a popup window with Yes and No buttons. Return True or Fals
8181def ask_yes_no (message : str , title : str = " Question" ) -> bool :
8282```
8383
84- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1615 )
84+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1617 )
8585
8686## cast
8787
@@ -106,7 +106,7 @@ Display a message in a popup window with Yes and No buttons. Return True or Fals
106106def confirm (question : str , title : Optional[str ] = None ) -> bool :
107107```
108108
109- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1699 )
109+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1701 )
110110
111111## copy_to_clipboard
112112
@@ -146,7 +146,7 @@ def input(
146146) -> Union[str , float , None ]:
147147```
148148
149- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1652 )
149+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1654 )
150150
151151## input_number
152152
@@ -161,7 +161,7 @@ def input_number(
161161) -> Union[float , None ]:
162162```
163163
164- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1684 )
164+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1686 )
165165
166166## is_mac
167167
@@ -194,7 +194,7 @@ def msgbox(message: str, title: Optional[str] = None) -> None: # message
194194 messagebox.showinfo(title, message)
195195```
196196
197- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1642 )
197+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1644 )
198198
199199## popup
200200
@@ -308,7 +308,7 @@ def popup_color(
308308) -> Union[str , tuple[int , int , int ], None ]:
309309```
310310
311- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1448 )
311+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1450 )
312312
313313## popup_error
314314
@@ -348,15 +348,15 @@ def popup_get_date(
348348) -> Union[datetime, None ]:
349349```
350350
351- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L937 )
351+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L939 )
352352
353353## popup_get_file
354354
355355Popup a file selection dialog. Return the file selected.
356356
357357- if ` save_as ` is False, show open file dialog.
358358- if ` save_as ` is True, show save as dialog.
359- - if ` multiple_files ` is True, can select multiple files and return a string joined by ` files_delimiter ` (default is ` FILES_DELIMITER ` ).
359+ - if ` multiple_files ` is True, can select multiple files and return a string joined by ` files_delimiter ` (default is FILES_DELIMITER).
360360- ` file_types ` is a list of tuples (description, file extension) or a list of file extensions. For example: [ ("Text Files", "* .txt"), ("All Files", "* .* ")] or [ "* .txt", "* .py"] .
361361
362362``` py
@@ -386,7 +386,9 @@ def popup_get_file(
386386 multiple_files : bool = False , # can select multiple files
387387 file_types : Optional[FileTypeList] = None ,
388388 default_extension : Optional[str ] = None ,
389- files_delimiter : Optional[str ] = None , # default is FILES_DELIMITER for multiple files, used when multiple_files=True
389+ files_delimiter : Optional[
390+ str
391+ ] = None , # default is FILES_DELIMITER for multiple files, used when multiple_files=True
390392 # pylint: disable=unused-argument
391393 no_window : Optional[bool ] = None , # for compatibility
392394 ** kw ,
@@ -410,7 +412,7 @@ def popup_get_folder(
410412) -> Union[str , None ]:
411413```
412414
413- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L814 )
415+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L816 )
414416
415417## popup_get_form
416418
@@ -463,7 +465,7 @@ def popup_get_form(
463465) -> Union[dict[str , Any], None ]:
464466```
465467
466- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1164 )
468+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1166 )
467469
468470## popup_get_text
469471
@@ -505,7 +507,7 @@ def popup_image(
505507) -> Union[str , None ]:
506508```
507509
508- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1544 )
510+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1546 )
509511
510512## popup_info
511513
@@ -570,7 +572,7 @@ def popup_listbox(
570572) -> Union[str , None ]:
571573```
572574
573- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1471 )
575+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1473 )
574576
575577## popup_memo
576578
@@ -592,7 +594,7 @@ def popup_memo(
592594) -> Union[str , None ]:
593595```
594596
595- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L830 )
597+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L832 )
596598
597599## popup_no_buttons
598600
@@ -657,7 +659,7 @@ Popup a information
657659def popup_notify (message : str , title : str = " " ) -> None :
658660```
659661
660- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1339 )
662+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1341 )
661663
662664## popup_ok
663665
@@ -726,7 +728,7 @@ def popup_scrolled(
726728) -> Union[str , None ]:
727729```
728730
729- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L859 )
731+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L861 )
730732
731733## popup_set_options
732734
@@ -835,7 +837,7 @@ Print message to popup window.(call default print function if no_window is True)
835837def print (* args , ** kw ) -> None :
836838```
837839
838- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1675 )
840+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1677 )
839841
840842## send_notification_mac
841843
@@ -845,7 +847,7 @@ Send Notification on mac
845847def send_notification_mac (message : str , title : str = " " ) -> bool :
846848```
847849
848- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1350 )
850+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1352 )
849851
850852## send_notification_win
851853
@@ -855,7 +857,7 @@ Send Notification on Windows using PowerShell without temp files
855857def send_notification_win (message : str , title : str = " " ) -> bool :
856858```
857859
858- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1370 )
860+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1372 )
859861
860862## show_info
861863
@@ -865,7 +867,7 @@ Show message in a popup window
865867def show_info (message : str , title : Optional[str ] = None ) -> None :
866868```
867869
868- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1636 )
870+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1638 )
869871
870872## show_message
871873
@@ -875,5 +877,5 @@ Show message in a popup window
875877def show_message (message : str , title : Optional[str ] = None ) -> None :
876878```
877879
878- - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1630 )
880+ - [ source] ( https://github.com/kujirahand/tkeasygui-python/blob/main/TkEasyGUI/dialogs.py#L1632 )
879881
0 commit comments