Skip to content

Commit

Permalink
Remove unused type:ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkjellid committed Aug 8, 2024
1 parent fe33b3d commit d677531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_api_decorator/decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)],
}


Expand Down

0 comments on commit d677531

Please sign in to comment.