Add missing defaults to third-party stubs (#14617)

This commit is contained in:
Jelle Zijlstra
2025-08-21 13:36:29 -07:00
committed by GitHub
parent 82926783a4
commit 573b57d8da
54 changed files with 383 additions and 376 deletions
@@ -9,7 +9,7 @@ class FileList:
files: list[str]
def __init__(self, warn: Unused = None, debug_print: Unused = None) -> None: ...
def set_allfiles(self, allfiles: Iterable[str]) -> None: ...
def findall(self, dir: StrPath = ...) -> None: ...
def findall(self, dir: StrPath = ".") -> None: ...
def debug_print(self, msg: object) -> None: ...
def append(self, item: str) -> None: ...
def extend(self, items: Iterable[str]) -> None: ...