Skip to content

Commit

Permalink
Remove usage of strict option
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Sep 15, 2019
1 parent d5295d3 commit 90999a8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ Define a marshmallow :class:`Schema <marshmallow.Schema>` to expose the model.
class PetSchema(ma.Schema):
class Meta:
strict = True
ordered = True
id = ma.fields.Int(dump_only=True)
Expand All @@ -65,7 +64,6 @@ query arguments.
class PetQueryArgsSchema(ma.Schema):
class Meta:
strict = True
ordered = True
name = ma.fields.String()
Expand Down

0 comments on commit 90999a8

Please sign in to comment.