fix lint error
All checks were successful
Lint / golangci-lint (push) Successful in 10m31s
Declarative Tests / test (push) Successful in 40s

This commit is contained in:
Matthew Rich 2024-10-05 08:05:15 -07:00
parent ea97070fea
commit 05e1539134

View File

@ -170,7 +170,6 @@ func (r *Reader) Status() string {
return httpReader.GetResponse().Status
}
panic("Unable to get HTTP status from reader")
return ""
}
func (r *Reader) StatusCode() int {
@ -178,7 +177,6 @@ func (r *Reader) StatusCode() int {
return httpReader.GetResponse().StatusCode
}
panic("Unable to get HTTP status code from reader")
return 0
}
func (r *Reader) Response() *http.Response {