From 3ad452233b25796b37d712034b87a1c390cfc92a Mon Sep 17 00:00:00 2001 From: sobolevn Date: Fri, 6 Dec 2024 22:37:48 +0300 Subject: [PATCH] Update django-stubs/urls/base.pyi --- django-stubs/urls/base.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/django-stubs/urls/base.pyi b/django-stubs/urls/base.pyi index 88ee6794b..7d472a722 100644 --- a/django-stubs/urls/base.pyi +++ b/django-stubs/urls/base.pyi @@ -1,6 +1,7 @@ from collections.abc import Callable, Sequence from typing import Any, Literal +from django.http.response import HttpResponseBase from django.urls.resolvers import ResolverMatch def resolve(path: str, urlconf: str | None = ...) -> ResolverMatch: ...