mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 05:51:53 +08:00
14 lines
289 B
Python
14 lines
289 B
Python
from typing import Any, List, Optional
|
|
|
|
from django.core.checks.messages import Warning
|
|
|
|
W003: Any
|
|
W016: Any
|
|
|
|
def check_csrf_middleware(
|
|
app_configs: None, **kwargs: Any
|
|
) -> List[Warning]: ...
|
|
def check_csrf_cookie_secure(
|
|
app_configs: None, **kwargs: Any
|
|
) -> List[Warning]: ...
|