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

10 lines
259 B
Python

from django.core.handlers.wsgi import WSGIRequest
from django.http.response import HttpResponseBase
class GZipMiddleware:
def process_response(
self,
request: WSGIRequest,
response: HttpResponseBase
) -> HttpResponseBase: ...