From 59050fcfef14ea970bd3654c913578c2e5e0f1da Mon Sep 17 00:00:00 2001 From: Steven Loria Date: Sun, 12 Jan 2025 15:31:35 -0500 Subject: [PATCH] Document Schema.dict_class (#2763) --- src/marshmallow/schema.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/marshmallow/schema.py b/src/marshmallow/schema.py index b5b238ed3..59508501c 100644 --- a/src/marshmallow/schema.py +++ b/src/marshmallow/schema.py @@ -474,6 +474,7 @@ def __repr__(self) -> str: @property def dict_class(self) -> type[dict]: + """`dict` type to return when serializing.""" if self.ordered: return OrderedDict else: