diff --git a/django-stubs/http/response.pyi b/django-stubs/http/response.pyi index 2bc42d2..bb6c2a5 100644 --- a/django-stubs/http/response.pyi +++ b/django-stubs/http/response.pyi @@ -23,6 +23,7 @@ class ResponseHeaders(CaseInsensitiveMapping): class HttpResponseBase(Iterable[Any]): status_code: int = ... + streaming: bool = ... cookies: SimpleCookie = ... reason_phrase: str = ... charset: str = ... @@ -81,7 +82,6 @@ class HttpResponse(HttpResponseBase): test_server_port: str test_was_secure_request: bool xframe_options_exempt: bool - streaming: bool = ... def __init__(self, content: object = ..., *args: Any, **kwargs: Any) -> None: ... def serialize(self) -> bytes: ... __bytes__ = serialize