Skip to content

Commit

Permalink
nolint
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Theel committed Nov 5, 2024
1 parent cd7eeb8 commit f6f314e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/jwx/jwx.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func decodeRSAPublicKey(e, n *string) (*rsa.PublicKey, error) {
return nil, errors.Wrap(err, errMessage)
}

pKey := rsa.PublicKey{N: nInt, E: int(eInt)}
pKey := rsa.PublicKey{N: nInt, E: int(eInt)} //nolint
return &pKey, nil
}

Expand Down

0 comments on commit f6f314e

Please sign in to comment.