From eacdd2ba09d285d4d6f7ef678736c6a1eeb2bf83 Mon Sep 17 00:00:00 2001 From: Maxim Kurnikov Date: Sat, 26 Jan 2019 17:26:06 +0300 Subject: [PATCH] fix plugin tests --- django-stubs/db/models/fields/__init__.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django-stubs/db/models/fields/__init__.pyi b/django-stubs/db/models/fields/__init__.pyi index 555f93f..a2d64c9 100644 --- a/django-stubs/db/models/fields/__init__.pyi +++ b/django-stubs/db/models/fields/__init__.pyi @@ -6,7 +6,7 @@ _Choice = Tuple[Any, str] _ChoiceNamedGroup = Tuple[str, Iterable[_Choice]] _FieldChoices = Iterable[Union[_Choice, _ChoiceNamedGroup]] -_ValidatorCallable = Callable[[...], None] +_ValidatorCallable = Callable[..., None] _ErrorMessagesToOverride = Dict[str, Any] class Field(RegisterLookupMixin):