mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
Use typeshed.Incomplete and object instead of Any in tkinter stubs (#8458)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
from tkinter import Frame, Misc, Scrollbar, Text
|
||||
from typing import Any
|
||||
|
||||
__all__ = ["ScrolledText"]
|
||||
|
||||
@@ -7,4 +6,4 @@ __all__ = ["ScrolledText"]
|
||||
class ScrolledText(Text):
|
||||
frame: Frame
|
||||
vbar: Scrollbar
|
||||
def __init__(self, master: Misc | None = ..., **kwargs: Any) -> None: ...
|
||||
def __init__(self, master: Misc | None = ..., **kwargs) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user