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):
107
107
108
108
class ItemSchema (PlainItemSchema ):
109
109
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 )
111
111
112
112
113
113
class ItemUpdateSchema (Schema ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class PlainStoreSchema(Schema):
14
14
15
15
class ItemSchema (PlainItemSchema ):
16
16
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 )
18
18
19
19
20
20
class ItemUpdateSchema (Schema ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class PlainStoreSchema(Schema):
14
14
15
15
class ItemSchema (PlainItemSchema ):
16
16
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 )
18
18
19
19
20
20
class ItemUpdateSchema (Schema ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class PlainStoreSchema(Schema):
14
14
15
15
class ItemSchema (PlainItemSchema ):
16
16
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 )
18
18
19
19
20
20
class ItemUpdateSchema (Schema ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class PlainStoreSchema(Schema):
14
14
15
15
class ItemSchema (PlainItemSchema ):
16
16
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 )
18
18
19
19
20
20
class ItemUpdateSchema (Schema ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class PlainStoreSchema(Schema):
14
14
15
15
class ItemSchema (PlainItemSchema ):
16
16
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 )
18
18
19
19
20
20
class ItemUpdateSchema (Schema ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class PlainStoreSchema(Schema):
14
14
15
15
class ItemSchema (PlainItemSchema ):
16
16
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 )
18
18
19
19
20
20
class ItemUpdateSchema (Schema ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class PlainStoreSchema(Schema):
14
14
15
15
class ItemSchema (PlainItemSchema ):
16
16
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 )
18
18
19
19
20
20
class ItemUpdateSchema (Schema ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class PlainStoreSchema(Schema):
14
14
15
15
class ItemSchema (PlainItemSchema ):
16
16
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 )
18
18
19
19
20
20
class ItemUpdateSchema (Schema ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class PlainStoreSchema(Schema):
14
14
15
15
class ItemSchema (PlainItemSchema ):
16
16
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 )
18
18
19
19
20
20
class ItemUpdateSchema (Schema ):
You can’t perform that action at this time.
0 commit comments