Added missing colon in extra_kwargs documentation

This commit is contained in:
Ken Lewerentz 2016-06-25 22:05:28 +07:00 committed by GitHub
parent 3a7bfdfa70
commit 57122f0422

View File

@ -216,7 +216,7 @@ For example:
class Meta:
fields = ('client', 'date', 'amount')
extra_kwargs = {'client' {'required': 'False'}}
extra_kwargs = {'client': {'required': 'False'}}
validators = [] # Remove a default "unique together" constraint.
## Updating nested serializers