From 5ae1c1beb7cb3ac9063af6525683e5a9d8ae9244 Mon Sep 17 00:00:00 2001 From: Julien Hebert Date: Sun, 20 Mar 2016 14:20:24 +0100 Subject: [PATCH] wrong syntax --- stdlib/3/fileinput.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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=...,