Remove trailing commas, pytype doesn't like them

This commit is contained in:
Guido van Rossum
2017-01-13 13:55:57 -08:00
committed by Łukasz Langa
parent 37fc626ffd
commit 70d012ed0b
2 changed files with 2 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ WSGIApplication = Callable[
Dict[str, str],
Union[
Callable[[str, List[Tuple[str, str]]], Callable[[Union[bytes, str]], None]],
Callable[[str, List[Tuple[str, str]], _exc_info], Callable[[Union[bytes, str]], None]],
Callable[[str, List[Tuple[str, str]], _exc_info], Callable[[Union[bytes, str]], None]]
]
],
Iterable[Union[bytes, str]],