Update serializers.md

This commit is contained in:
Tom Christie 2019-07-08 11:12:30 +01:00 committed by GitHub
parent bd6a1b3b6c
commit cc88c8a6f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -992,7 +992,7 @@ The following class is an example of a generic serializer that can handle coerci
else:
# Force anything else to its string representation.
output[attribute_name] = str(attribute)
return outout
return output
---