request.pyi: Change Union[] -> Any for attributing status. (#3045)

Fixes #3026
This commit is contained in:
Utkarsh Gupta
2019-06-13 10:01:13 +00:00
committed by Sebastian Rittau
parent e4a9cd580c
commit 8e7c32846f

View File

@@ -13,7 +13,7 @@ import sys
import os
_T = TypeVar('_T')
_UrlopenRet = Union[_HTTPResponse, addinfourl]
_UrlopenRet = Any
class _HTTPResponse(HTTPResponse):
url: str