From d677531d5693cc11053fef3f021ef8e88288f6d6 Mon Sep 17 00:00:00 2001 From: Daniel Kjellid Date: Thu, 8 Aug 2024 10:57:27 +0200 Subject: [PATCH] Remove unused type:ignore --- django_api_decorator/decorators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_api_decorator/decorators.py b/django_api_decorator/decorators.py index 8f9d483..cca4d36 100644 --- a/django_api_decorator/decorators.py +++ b/django_api_decorator/decorators.py @@ -228,7 +228,7 @@ def validate_boolean(value: Any) -> Any: TYPE_MAPPING = { - bool: Annotated[bool, BeforeValidator(validate_boolean)], # type: ignore[call-arg] + bool: Annotated[bool, BeforeValidator(validate_boolean)], }