Remove noqas for ARG001

This commit is contained in:
Joakim Hellsén 2024-03-16 18:52:32 +01:00
commit 6703937dc8
No known key found for this signature in database
GPG key ID: D196AE66FEBE1DC9
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ if TYPE_CHECKING:
from django.http import HttpRequest
def add_global_context(request: HttpRequest) -> dict[str, str | int]: # noqa: ARG001
def add_global_context(request: HttpRequest) -> dict[str, str | int]:
"""Add global context to all templates.
Args: