mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
Remove bare incompletes (#11670)
This commit is contained in:
@@ -10,5 +10,5 @@ class Dialog:
|
||||
command: ClassVar[str | None]
|
||||
master: Incomplete | None
|
||||
options: Mapping[str, Incomplete]
|
||||
def __init__(self, master: Incomplete | None = None, **options: Incomplete) -> None: ...
|
||||
def show(self, **options: Incomplete) -> Incomplete: ...
|
||||
def __init__(self, master: Incomplete | None = None, **options) -> None: ...
|
||||
def show(self, **options): ...
|
||||
|
||||
@@ -12,5 +12,5 @@ DIALOG_ICON: str
|
||||
class Dialog(Widget):
|
||||
widgetName: str
|
||||
num: int
|
||||
def __init__(self, master: Incomplete | None = None, cnf: Mapping[str, Any] = {}, **kw: Incomplete) -> None: ...
|
||||
def __init__(self, master: Incomplete | None = None, cnf: Mapping[str, Any] = {}, **kw) -> None: ...
|
||||
def destroy(self) -> None: ...
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
from _typeshed import Incomplete
|
||||
from tkinter import Frame, Misc, Scrollbar, Text
|
||||
|
||||
__all__ = ["ScrolledText"]
|
||||
@@ -7,4 +6,4 @@ __all__ = ["ScrolledText"]
|
||||
class ScrolledText(Text):
|
||||
frame: Frame
|
||||
vbar: Scrollbar
|
||||
def __init__(self, master: Misc | None = None, **kwargs: Incomplete) -> None: ...
|
||||
def __init__(self, master: Misc | None = None, **kwargs) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user