Skip to content

Instantly share code, notes, and snippets.

@NurElHuda
Created February 27, 2021 15:46
Show Gist options
  • Save NurElHuda/c49007a23072e57ad5efa7488246b44c to your computer and use it in GitHub Desktop.
Save NurElHuda/c49007a23072e57ad5efa7488246b44c to your computer and use it in GitHub Desktop.
Django serializer: generic update function.
def update(self, instance, validated_data):
for key, value in validated_data.items():
setattr(instance, key, value)
instance.save()
return instance
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment