From 2aee28cb6f83d2a2bb4edb1904aeed1039c6b776 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Sat, 23 Feb 2019 01:26:51 -0800 Subject: [PATCH] fix missing space in imghdr (#2812) --- stdlib/2and3/imghdr.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/2and3/imghdr.pyi b/stdlib/2and3/imghdr.pyi index 3d6f660f2..b9d8d17e3 100644 --- a/stdlib/2and3/imghdr.pyi +++ b/stdlib/2and3/imghdr.pyi @@ -12,5 +12,5 @@ else: @overload def what(file: _File) -> Optional[str]: ... @overload -def what(file: Any, h: bytes)-> Optional[str]: ... +def what(file: Any, h: bytes) -> Optional[str]: ... tests: List[Callable[[bytes, BinaryIO], Optional[str]]]