diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-02 09:24:23 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-02 09:24:23 +0300 |
| commit | 6ce9123de04ffff961cbf1da73648679216ff637 (patch) | |
| tree | 7a8c12f3499b0a62471627773fde9588a14c9261 /internal/processor/processor.go | |
| parent | faee049f51a3e6125a710fae3e713638bd68dd48 (diff) | |
Fix verification gate lint and test issues
Diffstat (limited to 'internal/processor/processor.go')
| -rw-r--r-- | internal/processor/processor.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processor/processor.go b/internal/processor/processor.go index 036fa79..8536b98 100644 --- a/internal/processor/processor.go +++ b/internal/processor/processor.go @@ -793,7 +793,7 @@ func (p *Processor) newNanoBananaImageSearcher() (image.ImageSearcher, error) { } if nanoBananaConfig.APIKey == "" { - return nil, fmt.Errorf("Google API key is required for image generation") + return nil, fmt.Errorf("google API key is required for image generation") } return newNanoBananaImageClient(nanoBananaConfig), nil |
