-
-
Notifications
You must be signed in to change notification settings - Fork 7k
Serializer must have data when calling is_valid #2234
New issue
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
Conversation
This is about right, but |
@@ -149,6 +149,7 @@ def save(self, **kwargs): | |||
return self.instance | |||
|
|||
def is_valid(self, raise_exception=False): | |||
assert self._initial_data is not None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any useful message would be thrown here if data is None ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can do that. Any ideas? @BrickXu
Closed as per #2228. |
@tomchristie this is the start of addressing this issue:
#2228