mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-16 08:47:49 +08:00
12 lines
379 B
Python
12 lines
379 B
Python
from typing import Any, List, Iterable, Optional
|
|
|
|
from django.core.checks.messages import Warning
|
|
|
|
from django.apps.config import AppConfig
|
|
|
|
W003: Any
|
|
W016: Any
|
|
|
|
def check_csrf_middleware(app_configs: Optional[Iterable[AppConfig]], **kwargs: Any) -> List[Warning]: ...
|
|
def check_csrf_cookie_secure(app_configs: Optional[Iterable[AppConfig]], **kwargs: Any) -> List[Warning]: ...
|