This commit is contained in:
Maxim Kurnikov
2019-01-26 19:10:46 +03:00
parent e35c474cf8
commit 2914a0e560
2 changed files with 3 additions and 3 deletions

View File

@@ -47,9 +47,9 @@ class AdminSite:
def empty_value_display(self, empty_value_display: Any) -> None: ... def empty_value_display(self, empty_value_display: Any) -> None: ...
def has_permission(self, request: WSGIRequest) -> bool: ... def has_permission(self, request: WSGIRequest) -> bool: ...
def admin_view(self, view: Callable, cacheable: bool = ...) -> Callable: ... def admin_view(self, view: Callable, cacheable: bool = ...) -> Callable: ...
def get_urls(self) -> List[Union[URLPattern, URLResolver]]: ... def get_urls(self) -> List[URLResolver]: ...
@property @property
def urls(self) -> Tuple[List[Union[URLPattern, URLResolver]], str, str]: ... def urls(self) -> Tuple[List[URLResolver], str, str]: ...
def each_context(self, request: Any): ... def each_context(self, request: Any): ...
def password_change(self, request: WSGIRequest, extra_context: Dict[str, str] = ...) -> TemplateResponse: ... def password_change(self, request: WSGIRequest, extra_context: Dict[str, str] = ...) -> TemplateResponse: ...
def password_change_done(self, request: WSGIRequest, extra_context: None = ...) -> TemplateResponse: ... def password_change_done(self, request: WSGIRequest, extra_context: None = ...) -> TemplateResponse: ...

View File

@@ -7,4 +7,4 @@ from .testcases import (
from .utils import override_settings as override_settings, modify_settings as modify_settings from .utils import override_settings as override_settings, modify_settings as modify_settings
from .client import Client as Client from .client import Client as Client, RequestFactory as RequestFactory