Remove bare incompletes (#11670)

This commit is contained in:
Sebastian Rittau
2024-03-31 03:35:57 +02:00
committed by GitHub
parent 33de88879f
commit 027115e624
10 changed files with 28 additions and 20 deletions

View File

@@ -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: ...