mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
drop ellipsis assignments from module vars, classvars and instance attrs (#5914)
Signed-off-by: oleg.hoefling <oleg.hoefling@gmail.com>
This commit is contained in:
@@ -4,7 +4,7 @@ from typing import Any, Mapping
|
||||
DIALOG_ICON: str
|
||||
|
||||
class Dialog(Widget):
|
||||
widgetName: str = ...
|
||||
num: int = ...
|
||||
widgetName: str
|
||||
num: int
|
||||
def __init__(self, master: Any | None = ..., cnf: Mapping[str, Any] = ..., **kw) -> None: ...
|
||||
def destroy(self) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user