File tree Expand file tree Collapse file tree 15 files changed +15
-15
lines changed
docs/docs/06_sql_storage_sqlalchemy
03_one_to_many_relationships_sqlalchemy
04_configure_flask_sqlalchemy
05_insert_models_sqlalchemy
07_updating_models_sqlalchemy
08_retrieve_list_all_models
09_delete_models_sqlalchemy Expand file tree Collapse file tree 15 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ class PlainStoreSchema(Schema):
107107
108108class ItemSchema (PlainItemSchema ):
109109 store_id = fields.Int(required = True , load_only = True )
110- store = fields.Nested(lambda : PlainStoreSchema(), dump_only = True )
110+ store = fields.Nested(PlainStoreSchema(), dump_only = True )
111111
112112
113113class ItemUpdateSchema (Schema ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class PlainStoreSchema(Schema):
1414
1515class ItemSchema (PlainItemSchema ):
1616 store_id = fields .Int (required = True , load_only = True )
17- store = fields .Nested (lambda : PlainStoreSchema (), dump_only = True )
17+ store = fields .Nested (PlainStoreSchema (), dump_only = True )
1818
1919
2020class ItemUpdateSchema (Schema ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class PlainStoreSchema(Schema):
1414
1515class ItemSchema (PlainItemSchema ):
1616 store_id = fields .Int (required = True , load_only = True )
17- store = fields .Nested (lambda : PlainStoreSchema (), dump_only = True )
17+ store = fields .Nested (PlainStoreSchema (), dump_only = True )
1818
1919
2020class ItemUpdateSchema (Schema ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class PlainStoreSchema(Schema):
1414
1515class ItemSchema (PlainItemSchema ):
1616 store_id = fields .Int (required = True , load_only = True )
17- store = fields .Nested (lambda : PlainStoreSchema (), dump_only = True )
17+ store = fields .Nested (PlainStoreSchema (), dump_only = True )
1818
1919
2020class ItemUpdateSchema (Schema ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class PlainStoreSchema(Schema):
1414
1515class ItemSchema (PlainItemSchema ):
1616 store_id = fields .Int (required = True , load_only = True )
17- store = fields .Nested (lambda : PlainStoreSchema (), dump_only = True )
17+ store = fields .Nested (PlainStoreSchema (), dump_only = True )
1818
1919
2020class ItemUpdateSchema (Schema ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class PlainStoreSchema(Schema):
1414
1515class ItemSchema (PlainItemSchema ):
1616 store_id = fields .Int (required = True , load_only = True )
17- store = fields .Nested (lambda : PlainStoreSchema (), dump_only = True )
17+ store = fields .Nested (PlainStoreSchema (), dump_only = True )
1818
1919
2020class ItemUpdateSchema (Schema ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class PlainStoreSchema(Schema):
1414
1515class ItemSchema (PlainItemSchema ):
1616 store_id = fields .Int (required = True , load_only = True )
17- store = fields .Nested (lambda : PlainStoreSchema (), dump_only = True )
17+ store = fields .Nested (PlainStoreSchema (), dump_only = True )
1818
1919
2020class ItemUpdateSchema (Schema ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class PlainStoreSchema(Schema):
1414
1515class ItemSchema (PlainItemSchema ):
1616 store_id = fields .Int (required = True , load_only = True )
17- store = fields .Nested (lambda : PlainStoreSchema (), dump_only = True )
17+ store = fields .Nested (PlainStoreSchema (), dump_only = True )
1818
1919
2020class ItemUpdateSchema (Schema ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class PlainStoreSchema(Schema):
1414
1515class ItemSchema (PlainItemSchema ):
1616 store_id = fields .Int (required = True , load_only = True )
17- store = fields .Nested (lambda : PlainStoreSchema (), dump_only = True )
17+ store = fields .Nested (PlainStoreSchema (), dump_only = True )
1818
1919
2020class ItemUpdateSchema (Schema ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class PlainStoreSchema(Schema):
1414
1515class ItemSchema (PlainItemSchema ):
1616 store_id = fields .Int (required = True , load_only = True )
17- store = fields .Nested (lambda : PlainStoreSchema (), dump_only = True )
17+ store = fields .Nested (PlainStoreSchema (), dump_only = True )
1818
1919
2020class ItemUpdateSchema (Schema ):
You can’t perform that action at this time.
0 commit comments