remove stray ','

This commit is contained in:
Matthias Kramm
2016-08-04 15:39:58 -07:00
parent a14b1893d9
commit b46658c104

View File

@@ -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]: ...