diff --git a/rest_framework_bulk/drf3/serializers.py b/rest_framework_bulk/drf3/serializers.py index 31fff46..1d18ce0 100644 --- a/rest_framework_bulk/drf3/serializers.py +++ b/rest_framework_bulk/drf3/serializers.py @@ -68,3 +68,10 @@ def update(self, queryset, all_validated_data): updated_objects.append(self.child.update(obj, obj_validated_data)) return updated_objects + + def __iter__(self): + return self + + def next(self): + raise StopIteration +