Skip to content

Commit

Permalink
fix black linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ckeshava committed Nov 12, 2024
1 parent c721a87 commit c76b755
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xrpl/models/transactions/credential_delete.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ def _get_errors(self: Self) -> Dict[str, str]:
}

if not self.subject and not self.issuer:
errors[
"invalid_params"
] = "CredentialDelete transaction: Neither `issuer` nor `subject` provided."
errors["invalid_params"] = (
"CredentialDelete transaction: Neither `issuer` nor `subject` provided."
)

return errors

Expand Down

0 comments on commit c76b755

Please sign in to comment.