diff --git a/stdlib/filecmp.pyi b/stdlib/filecmp.pyi index 994809099c6b..7c606af40791 100644 --- a/stdlib/filecmp.pyi +++ b/stdlib/filecmp.pyi @@ -14,7 +14,10 @@ BUFSIZE: Literal[8192] def cmp(f1: StrOrBytesPath, f2: StrOrBytesPath, shallow: int | bool = ...) -> bool: ... def cmpfiles( - a: AnyStr | PathLike[AnyStr], b: AnyStr | PathLike[AnyStr], common: Iterable[AnyStr], shallow: int | bool = ... + a: AnyStr | PathLike[AnyStr], + b: AnyStr | PathLike[AnyStr], + common: Iterable[AnyStr | PathLike[AnyStr]], + shallow: int | bool = ..., ) -> tuple[list[AnyStr], list[AnyStr], list[AnyStr]]: ... class dircmp(Generic[AnyStr]):