Skip to content

Commit

Permalink
running gofmt
Browse files Browse the repository at this point in the history
  • Loading branch information
anand-venkatraman committed Jun 28, 2024
1 parent 394b0da commit 0a2a52c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adapters/pulsepoint/pulsepoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"errors"
"fmt"
"net/http"
"strconv"
"reflect"
"strconv"

"github.com/prebid/prebid-server/v2/adapters"
"github.com/prebid/prebid-server/v2/config"
Expand Down Expand Up @@ -186,7 +186,7 @@ func parseParam(paramName string, paramValue jsonutil.StringInt) (string, error)
value := int(ref.Int())
// verify we got a non-zero value
if value == 0 {
return "", errors.New("param not found - " + paramName)
return "", errors.New("param not found - " + paramName)
}
return strconv.Itoa(value), nil
}

0 comments on commit 0a2a52c

Please sign in to comment.