Remove second empty line in mypy_extensions (#1237)

This commit is contained in:
Naomi Seyfer
2017-05-02 13:41:23 -07:00
committed by Jukka Lehtosalo
parent 6a9d74d1c7
commit c96a64d421

View File

@@ -2,7 +2,6 @@ from typing import Dict, Type, TypeVar, Optional, Union
_T = TypeVar('_T')
def TypedDict(typename: str, fields: Dict[str, Type[_T]]) -> Type[dict]: ...
def Arg(type: _T = ..., name: Optional[str] = ...) -> _T: ...