Skip to content

Commit

Permalink
refactor: remove unnecessary strict option from schemas (#1466)
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria authored Sep 10, 2020
1 parent d7073ae commit c2634ba
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions flask_appbuilder/api/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ class MetaSchema(SQLAlchemyAutoSchema, class_mixin):
class Meta:
model = _model
fields = columns
strict = True
load_instance = True
sqla_session = self.datamodel.session

Expand All @@ -105,7 +104,6 @@ class Meta:
class MetaSchema(SQLAlchemyAutoSchema, class_mixin):
class Meta:
model = _model
strict = True
load_instance = True
sqla_session = self.datamodel.session

Expand Down

0 comments on commit c2634ba

Please sign in to comment.