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

@@ -46,7 +46,7 @@ class LoadFileDialog(FileDialog):
class SaveFileDialog(FileDialog):
title: str
def ok_command(self): ...
def ok_command(self) -> None: ...
class _Dialog(commondialog.Dialog): ...