From bc2d8919f02d45d5fe5a245d3367b757fe2957cf Mon Sep 17 00:00:00 2001 From: johnthagen Date: Wed, 13 May 2020 16:26:15 -0400 Subject: [PATCH] Remove unnecessary object derive --- docs/api-guide/fields.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/fields.md b/docs/api-guide/fields.md index 65c83b78e..b2bdd50c8 100644 --- a/docs/api-guide/fields.md +++ b/docs/api-guide/fields.md @@ -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. """