From b362177cc424a2cd707809ce60853a954f77a6e7 Mon Sep 17 00:00:00 2001 From: David Euresti Date: Mon, 20 Mar 2017 22:36:44 -0700 Subject: [PATCH] Fix typo --- stdlib/2/os/__init__.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/2/os/__init__.pyi b/stdlib/2/os/__init__.pyi index 9c4c91444..f96aae352 100644 --- a/stdlib/2/os/__init__.pyi +++ b/stdlib/2/os/__init__.pyi @@ -194,7 +194,7 @@ def unlink(path: _PathType) -> None: ... def utime(path: _PathType, times: Optional[Tuple[int, int]]) -> None: ... def walk(top: AnyStr, topdown: bool = ..., onerror: Any = ..., followlinks: bool = ...) -> Iterator[Tuple[AnyStr, List[AnyStr], - List[Anystr]]]: ... + List[AnyStr]]]: ... def abort() -> None: ... def execl(file: _PathType, *args) -> None: ...