Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
elizabethhealy committed Dec 10, 2024
1 parent 45bea1e commit ae23aa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/handlers/tdf.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func (h Handler) EncryptBytes(tdfType string, unencrypted []byte, attrValues []s
if err != nil {
return nil, errors.Join(ErrTDFUnableToReadAssertions, err)
}
err = json.Unmarshal([]byte(assertionBytes), &assertionConfigs)
err = json.Unmarshal(assertionBytes, &assertionConfigs)
if err != nil {
return nil, errors.Join(ErrTDFUnableToReadAssertions, err)
}
Expand Down

0 comments on commit ae23aa8

Please sign in to comment.