Remove pyre-extensions (#5001)

This commit is contained in:
Jia Chen
2021-02-02 11:43:21 -08:00
committed by GitHub
parent 0afc2f9f43
commit ece1a3e525
2 changed files with 0 additions and 9 deletions

View File

@@ -1,2 +0,0 @@
version = "0.1"
python2 = true

View File

@@ -1,7 +0,0 @@
from typing import Any, List, Optional, Type, TypeVar
_T = TypeVar("_T")
def none_throws(optional: Optional[_T], message: str = ...) -> _T: ...
def safe_cast(new_type: Type[_T], value: Any) -> _T: ...
def ParameterSpecification(__name: str) -> List[Type[Any]]: ...