From 91f445ef1169c042dba525df70d2e450c9293176 Mon Sep 17 00:00:00 2001 From: cshesse <48501609+cshesse@users.noreply.github.com> Date: Sat, 23 Nov 2019 15:08:53 -0800 Subject: [PATCH] fix incorrect param name in FileIO (#3484) --- stdlib/3/io.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/3/io.pyi b/stdlib/3/io.pyi index d3cc6948b..ee595f3f6 100644 --- a/stdlib/3/io.pyi +++ b/stdlib/3/io.pyi @@ -66,7 +66,7 @@ class FileIO(RawIOBase): name: Union[int, str] def __init__( self, - name: Union[str, bytes, int], + file: Union[str, bytes, int], mode: str = ..., closefd: bool = ..., opener: Optional[Callable[[Union[int, str], str], int]] = ...