From b46658c104c67fbb25ea947c3da1a88cbbc8b5bb Mon Sep 17 00:00:00 2001 From: Matthias Kramm Date: Thu, 4 Aug 2016 15:39:58 -0700 Subject: [PATCH] remove stray ',' --- stdlib/2.7/inspect.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]: ...