We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The form stubs have changed_data marked as a Callable[[], List[str]], but it's not callable, it's a property, so I think it should just be List[str]
changed_data
Callable[[], List[str]]
List[str]
The text was updated successfully, but these errors were encountered:
Form.changed_data is not callable fixes typeddjango#148
7150d25
Add property to forms.changed_data fixes typeddjango#148
2992d30
b8379d4
No branches or pull requests
The form stubs have
changed_data
marked as aCallable[[], List[str]]
, but it's not callable, it's a property, so I think it should just beList[str]
The text was updated successfully, but these errors were encountered: