fix missing space in imghdr (#2812)

This commit is contained in:
Jelle Zijlstra
2019-02-23 01:26:51 -08:00
committed by Sebastian Rittau
parent 07ea6614c8
commit 2aee28cb6f

View File

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