Skip to content

Commit

Permalink
🐛 Fix class inheritance
Browse files Browse the repository at this point in the history
  • Loading branch information
ff137 committed Nov 22, 2024
1 parent e9615f5 commit edcf92d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/issuer.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class IndyCredential(BaseModel):
attributes: Dict[str, str]


class CredentialBase(BaseModel, SaveExchangeRecordField):
class CredentialBase(SaveExchangeRecordField):
type: CredentialType = CredentialType.INDY
indy_credential_detail: Optional[IndyCredential] = None
ld_credential_detail: Optional[LDProofVCDetail] = None
Expand Down

0 comments on commit edcf92d

Please sign in to comment.