From f585eee125c36c200edfc470377ea3ab747d9cff Mon Sep 17 00:00:00 2001 From: Xavier Ordoquy Date: Mon, 9 Oct 2017 22:19:53 +0200 Subject: [PATCH] Remove duplicated line --- docs/api-guide/serializers.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/api-guide/serializers.md b/docs/api-guide/serializers.md index 515e7cad8..0e235c88d 100644 --- a/docs/api-guide/serializers.md +++ b/docs/api-guide/serializers.md @@ -822,9 +822,7 @@ Here's an example of how you might choose to implement multiple updates: # We need to identify elements in the list using their primary key, # so use a writable field here, rather than the default which would be read-only. id = serializers.IntegerField() - ... - id = serializers.IntegerField(required=False) class Meta: list_serializer_class = BookListSerializer