We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab41966 commit 5727fe1Copy full SHA for 5727fe1
docs/usage.rst
@@ -123,7 +123,7 @@ Any :class:`marshmallow.Schema.Meta` value is accepted in the meta dict. For exa
123
class A:
124
x: int
125
126
- schema = desert.schema_class(A, meta={"unknwown": marshmallow.EXCLUDE})()
+ schema = desert.schema_class(A, meta={"unknown": marshmallow.EXCLUDE})()
127
print(schema.load({"x": 1, "y": 2}))
128
129
.. testoutput::
src/desert/_make.py
@@ -192,7 +192,7 @@ def field_for_schema(
192
... red = 1
193
>>> field_for_schema(Color).__class__
194
<class 'marshmallow_enum.EnumField'>
195
- >>> field_for_schema(Any).__class__
+ >>> field_for_schema(t.Any).__class__
196
<class 'marshmallow.fields.Raw'>
197
"""
198
0 commit comments