Skip to content

Commit

Permalink
5.0: Update unused argument type
Browse files Browse the repository at this point in the history
  • Loading branch information
sudosubin committed Apr 16, 2024
1 parent 9ccb604 commit dc3b266
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion django-stubs/core/handlers/base.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ from collections.abc import Awaitable, Callable
from logging import Logger
from typing import Any

import _typeshed
from django.http.request import HttpRequest
from django.http.response import HttpResponse, HttpResponseBase
from django.urls.resolvers import ResolverMatch
Expand All @@ -25,4 +26,4 @@ class BaseHandler:
def make_view_atomic(self, view: Callable[..., HttpResponseBase]) -> Callable[..., HttpResponseBase]: ...
def process_exception_by_middleware(self, exception: Exception, request: HttpRequest) -> HttpResponse: ...

def reset_urlconf(sender: object, **kwargs: Any) -> None: ...
def reset_urlconf(sender: _typeshed.Unused, **kwargs: Any) -> None: ...

0 comments on commit dc3b266

Please sign in to comment.