Chore: nolint comment for nonvalid issues

This commit is contained in:
Grail Finder
2025-05-19 10:45:26 +03:00
parent 94df5b830c
commit 8b9a33d330
3 changed files with 3 additions and 3 deletions

View File

@@ -144,7 +144,7 @@ func (o *KokoroOrator) requestSound(text string) (io.ReadCloser, error) {
if err != nil {
return nil, fmt.Errorf("failed to marshal payload: %w", err)
}
req, err := http.NewRequest("POST", o.URL, bytes.NewBuffer(payloadBytes))
req, err := http.NewRequest("POST", o.URL, bytes.NewBuffer(payloadBytes)) //nolint:noctx
if err != nil {
return nil, fmt.Errorf("failed to create request: %w", err)
}