Skip to content

Commit

Permalink
Fix lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
JonJagger committed Aug 22, 2024
1 parent 791c472 commit efdbc70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/requests/requests.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ func (c *Client) Do(p *RequestParams) (*HTTPResponse, error) {
cleanedErrorMessage = fmt.Sprintf("%s", respBodyMap)
}
}
return nil, fmt.Errorf(cleanedErrorMessage)
return nil, fmt.Errorf("%s", cleanedErrorMessage)
}
return &HTTPResponse{string(body), resp}, nil
}
Expand Down

0 comments on commit efdbc70

Please sign in to comment.