Remove bare incompletes (#11670)

This commit is contained in:
Sebastian Rittau
2024-03-30 18:35:57 -07:00
committed by GitHub
parent 33de88879f
commit 027115e624
10 changed files with 28 additions and 20 deletions
+1 -1
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: ...