From e35c474cf87d5fe9f2689ee8ea703f48db555a59 Mon Sep 17 00:00:00 2001 From: Maxim Kurnikov Date: Sat, 26 Jan 2019 18:07:55 +0300 Subject: [PATCH] lint --- django-stubs/contrib/admin/options.pyi | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/django-stubs/contrib/admin/options.pyi b/django-stubs/contrib/admin/options.pyi index bc2dbe1..adf5282 100644 --- a/django-stubs/contrib/admin/options.pyi +++ b/django-stubs/contrib/admin/options.pyi @@ -204,7 +204,9 @@ class ModelAdmin(BaseModelAdmin): form_url: str = ..., obj: Optional[Any] = ..., ): ... - def response_add(self, request: WSGIRequest, obj: Model, post_url_continue: Optional[str] = ...) -> HttpResponse: ... + def response_add( + self, request: WSGIRequest, obj: Model, post_url_continue: Optional[str] = ... + ) -> HttpResponse: ... def response_change(self, request: WSGIRequest, obj: Model) -> HttpResponse: ... def response_post_save_add(self, request: WSGIRequest, obj: Model) -> HttpResponseRedirect: ... def response_post_save_change(self, request: WSGIRequest, obj: Model) -> HttpResponseRedirect: ...