Skip to content

Commit

Permalink
Form.changed_data is not callable fixes #148
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredlockhart committed Aug 29, 2019
1 parent caa0e60 commit 7150d25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django-stubs/forms/forms.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class BaseForm:
fields: Dict[str, Any] = ...
renderer: BaseRenderer = ...
cleaned_data: Any = ...
changed_data: List[str]: ...
def __init__(
self,
data: Optional[Mapping[str, Any]] = ...,
Expand Down Expand Up @@ -60,7 +61,6 @@ class BaseForm:
def full_clean(self) -> None: ...
def clean(self) -> Dict[str, Any]: ...
def has_changed(self) -> bool: ...
def changed_data(self) -> List[str]: ...
@property
def media(self) -> Media: ...
def is_multipart(self): ...
Expand Down

0 comments on commit 7150d25

Please sign in to comment.