Skip to content

Commit

Permalink
Fixed missing inheritance
Browse files Browse the repository at this point in the history
  • Loading branch information
mesemus committed Jul 7, 2024
1 parent 7cc169d commit 30f029f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class Meta:
skip = ma.fields.Boolean()


class DraftParentRecordMetadataSchema:
class DraftParentRecordMetadataSchema(ma.Schema):
class Meta:
unknown = ma.RAISE

Expand All @@ -100,7 +100,7 @@ class Meta:
skip = ma.fields.Boolean()


class DraftParentRecordJsonSchema:
class DraftParentRecordJsonSchema(ma.Schema):
name = ma.fields.Str(metadata={"doc": "Schema name"})
module = ma.fields.Str(metadata={"doc": "Schema module"})
file_ = ma.fields.Str(
Expand Down

0 comments on commit 30f029f

Please sign in to comment.