mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +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:
@@ -3,8 +3,8 @@ from typing_extensions import Literal
|
||||
|
||||
# class is entirely undocumented
|
||||
class FileList:
|
||||
allfiles: Iterable[str] | None = ...
|
||||
files: list[str] = ...
|
||||
allfiles: Iterable[str] | None
|
||||
files: list[str]
|
||||
def __init__(self, warn: None = ..., debug_print: None = ...) -> None: ...
|
||||
def set_allfiles(self, allfiles: Iterable[str]) -> None: ...
|
||||
def findall(self, dir: str = ...) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user