Fix missing args on SlugField.__init__ (#879)

This commit is contained in:
Anderson Luiz de Souza
2022-03-20 13:40:55 -03:00
committed by GitHub
parent f4d3895595
commit 10e06947d7

View File

@@ -378,6 +378,10 @@ class SlugField(CharField):
def __init__(
self,
allow_unicode: bool = ...,
max_length: Optional[Any] = ...,
min_length: Optional[Any] = ...,
strip: bool = ...,
empty_value: Optional[str] = ...,
required: bool = ...,
widget: Optional[Union[Widget, Type[Widget]]] = ...,
label: Optional[Any] = ...,