Remove unnecessary object derive

This commit is contained in:
johnthagen 2020-05-13 16:26:15 -04:00 committed by GitHub
parent 99e721cd35
commit bc2d8919f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -603,7 +603,7 @@ The `to_internal_value()` method is called to restore a primitive datatype into
Let's look at an example of serializing a class that represents an RGB color value:
class Color(object):
class Color:
"""
A color represented in the RGB colorspace.
"""