diff --git a/stdlib/2.7/inspect.pyi b/stdlib/2.7/inspect.pyi index 818f52591..4800b29d7 100644 --- a/stdlib/2.7/inspect.pyi +++ b/stdlib/2.7/inspect.pyi @@ -9,8 +9,8 @@ ModuleInfo = NamedTuple('ModuleInfo', [('name', str), ('module_type', int), ]) def getmembers(object: object, - predicate: Callable[[Any], bool] = ..., - ) -> List[Tuple[str, object]]: ... + predicate: Callable[[Any], bool] = ... + ) -> List[Tuple[str, object]]: ... def getmoduleinfo(path: str) -> Optional[ModuleInfo]: ... def getmodulename(path: str) -> Optional[str]: ...