Remove __del__ from the tkinter _Image protocol. (#4909)

See https://github.com/python/typeshed/pull/4766#issuecomment-753341778.
This commit is contained in:
Rebecca Chen
2021-01-05 13:38:41 -08:00
committed by GitHub
parent add4d92f05
commit 7489e1b9c2

View File

@@ -2384,7 +2384,6 @@ class OptionMenu(Menubutton):
class _Image(Protocol):
tk: _tkinter.TkappType
def __del__(self) -> None: ...
def height(self) -> int: ...
def width(self) -> int: ...