BaseForm.prefix may be None (#389)

This commit is contained in:
Alexander Viklund
2020-06-04 20:24:42 +02:00
committed by GitHub
parent e05b84e32d
commit 7e0e43135d

View File

@@ -24,7 +24,7 @@ class BaseForm:
auto_id: Union[bool, str] = ... auto_id: Union[bool, str] = ...
initial: Dict[str, Any] = ... initial: Dict[str, Any] = ...
error_class: Type[ErrorList] = ... error_class: Type[ErrorList] = ...
prefix: str = ... prefix: Optional[str] = ...
label_suffix: str = ... label_suffix: str = ...
empty_permitted: bool = ... empty_permitted: bool = ...
fields: Dict[str, Any] = ... fields: Dict[str, Any] = ...