diff --git a/stdlib/3/fileinput.pyi b/stdlib/3/fileinput.pyi index d39fe5826..1d8ee2baa 100644 --- a/stdlib/3/fileinput.pyi +++ b/stdlib/3/fileinput.pyi @@ -2,7 +2,7 @@ from typing import Iterable, BinaryIO, List def input( - files=List[str], + files: List[str]=..., inplace: bool=..., backup: str=..., bufsize: int=..., @@ -21,7 +21,7 @@ def isstdin() -> bool: ... class FileInput(Iterable): def __init__( self, - files=List[str], + files: List[str]=..., inplace: bool=..., backup: str=..., bufsize: int=...,