From 66ca3efde27d10b6c3b6d002e8b4352ad11f07e0 Mon Sep 17 00:00:00 2001 From: johnthagen Date: Sat, 12 Mar 2022 16:11:02 -0500 Subject: [PATCH] Fix docstring format in example docs --- docs/examples/model_observer.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/model_observer.rst b/docs/examples/model_observer.rst index 04f43d3..5fbc5e1 100644 --- a/docs/examples/model_observer.rst +++ b/docs/examples/model_observer.rst @@ -70,7 +70,7 @@ These are the important methods of the class. @comment_activity.serializer def comment_activity(self, instance: Comment, action, **kwargs) -> CommentSerializer: - '''This will return the comment serializer''' + """This will return the comment serializer""" return CommentSerializer(instance) @action()