From fcd7d687787218d80df305dfba6ae9bc9d3d0d10 Mon Sep 17 00:00:00 2001 From: Bryan Frimin Date: Thu, 28 May 2026 18:19:37 -0700 Subject: [PATCH] Fix wsl_v5 lint: add blank line between if blocks in createSignatureRequestInTx Signed-off-by: Bryan Frimin --- pkg/probo/document_service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/probo/document_service.go b/pkg/probo/document_service.go index 5ac5e80ac..bd62c2912 100644 --- a/pkg/probo/document_service.go +++ b/pkg/probo/document_service.go @@ -1032,6 +1032,7 @@ func (s *DocumentService) createSignatureRequestInTx( if err == nil { return existingSignature, nil } + if !errors.Is(err, coredata.ErrResourceNotFound) { return nil, fmt.Errorf("cannot load existing signature for signatory: %w", err) }