Update http.pyi (#502)

This commit is contained in:
Nikita Sobolev
2020-10-26 00:01:36 +03:00
committed by GitHub
parent 92eb068a04
commit 402b7d563f

View File

@@ -3,7 +3,7 @@ from typing import Any, Callable, List, Optional, TypeVar
_F = TypeVar("_F", bound=Callable[..., Any])
def conditional_page(_F) -> _F: ...
def require_http_methods(request_method_list: List[str]) -> Callable: ...
def require_http_methods(request_method_list: List[str]) -> Callable[[_F], _F]: ...
def require_GET(_F) -> _F: ...
def require_POST(_F) -> _F: ...
def require_safe(_F) -> _F: ...