mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +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:
@@ -19,7 +19,7 @@ YES: str
|
||||
NO: str
|
||||
|
||||
class Message(Dialog):
|
||||
command: ClassVar[str] = ...
|
||||
command: ClassVar[str]
|
||||
|
||||
def showinfo(title: str | None = ..., message: str | None = ..., **options: Any) -> str: ...
|
||||
def showwarning(title: str | None = ..., message: str | None = ..., **options: Any) -> str: ...
|
||||
|
||||
Reference in New Issue
Block a user