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

@@ -45,7 +45,7 @@ class tixCommand:
def tix_resetoptions(self, newScheme: str, newFontSet: str, newScmPrio: str | None = ...) -> None: ...
class Tk(tkinter.Tk, tixCommand):
def __init__(self, screenName: str | None = ..., baseName: str | None = ..., className: str = ...): ...
def __init__(self, screenName: str | None = ..., baseName: str | None = ..., className: str = ...) -> None: ...
class TixWidget(tkinter.Widget):
def __init__(