Add some missing type hints to tkinter (#6359)

Co-authored-by: Akuli <akuviljanen17@gmail.com>
This commit is contained in:
Gabe R
2022-02-02 01:29:11 -07:00
committed by GitHub
parent 3e6375e606
commit 7e053ac5bd
5 changed files with 126 additions and 115 deletions

View File

@@ -4,7 +4,7 @@ from typing import Any
class Dialog(Toplevel):
def __init__(self, parent: Misc | None, title: str | None = ...) -> None: ...
def body(self, master) -> None: ...
def buttonbox(self): ...
def buttonbox(self) -> None: ...
class SimpleDialog:
def __init__(