wrong syntax

This commit is contained in:
Julien Hebert
2016-03-20 14:20:24 +01:00
parent 703b88b0c0
commit 5ae1c1beb7

View File

@@ -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=...,