Files
django-stubs/django/middleware/locale.pyi
Maxim Kurnikov a9f215bf64 initial commit
2018-07-29 18:12:23 +03:00

11 lines
314 B
Python

from django.core.handlers.wsgi import WSGIRequest
from django.http.response import HttpResponse
class LocaleMiddleware:
def process_request(self, request: WSGIRequest) -> None: ...
def process_response(
self,
request: WSGIRequest,
response: HttpResponse
) -> HttpResponse: ...