Fix wsl_v5 lint: add blank line between if blocks in createSignatureRequestInTx

Signed-off-by: Bryan Frimin <bryan@probo.com>
This commit is contained in:
Bryan Frimin
2026-05-28 18:19:37 -07:00
parent 65bfaa9f51
commit fcd7d68778

View File

@@ -1032,6 +1032,7 @@ func (s *DocumentService) createSignatureRequestInTx(
if err == nil { if err == nil {
return existingSignature, nil return existingSignature, nil
} }
if !errors.Is(err, coredata.ErrResourceNotFound) { if !errors.Is(err, coredata.ErrResourceNotFound) {
return nil, fmt.Errorf("cannot load existing signature for signatory: %w", err) return nil, fmt.Errorf("cannot load existing signature for signatory: %w", err)
} }