mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-28 22:02:24 +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:
@@ -1,8 +1,8 @@
|
||||
from typing import Any, ClassVar, Mapping
|
||||
|
||||
class Dialog:
|
||||
command: ClassVar[str | None] = ...
|
||||
master: Any | None = ...
|
||||
options: Mapping[str, Any] = ...
|
||||
command: ClassVar[str | None]
|
||||
master: Any | None
|
||||
options: Mapping[str, Any]
|
||||
def __init__(self, master: Any | None = ..., **options) -> None: ...
|
||||
def show(self, **options) -> Any: ...
|
||||
|
||||
Reference in New Issue
Block a user