Skip to content

Commit ed4ccde

Browse files
authored
Add explicit Any for Dialog.show return type
1 parent 26aa45b commit ed4ccde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/tkinter/commondialog.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ class Dialog:
1111
# sometimes changed to a different type.
1212
options: Mapping[str, Any]
1313
def __init__(self, master: Misc | None = None, **options: Any) -> None: ...
14-
def show(self, **options: Any): ...
14+
def show(self, **options: Any) -> Any: ...

0 commit comments

Comments
 (0)