Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
Signed-off-by: Spencer Schrock <[email protected]>
  • Loading branch information
spencerschrock committed Jun 27, 2024
1 parent 5a52ec9 commit 860cacd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/osv/osv.go
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ func HydrateWithClient(resp *BatchedResponse, client *http.Client) (*HydratedBat
// exit early if another hydration request has already failed
// results are thrown away later, so avoid needless work
if ctx.Err() != nil {
return nil
return nil //nolint:nilerr // this value doesn't matter to errgroup.Wait()
}
vuln, err := GetWithClient(id, client)
if err != nil {
Expand Down

0 comments on commit 860cacd

Please sign in to comment.