Skip to content

Commit

Permalink
Merge pull request #95 from sloria/rm-strict
Browse files Browse the repository at this point in the history
Remove usage of strict option
  • Loading branch information
lafrech committed Sep 16, 2019
2 parents d5295d3 + 90999a8 commit db4c765
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 db4c765

Please sign in to comment.