Fix wsl_v5 spacing in MergeByCampaignID

Add blank lines around the dedup-and-connector-ID block to satisfy
the wsl_v5 linter (blank line after an if-block, above an assignment
following a block, and above an if with no shared variables in the
preceding line).

Signed-off-by: Bryan Frimin <bryan@probo.com>
This commit is contained in:
Bryan Frimin
2026-07-27 18:42:08 +02:00
parent b43e66ffa4
commit 636dd172e8

View File

@@ -166,9 +166,11 @@ func (sources *AccessReviewCampaignSources) MergeByCampaignID(
if _, ok := seen[source.ID]; ok {
continue
}
seen[source.ID] = struct{}{}
var connectorID *string
if source.ConnectorID != nil {
s := source.ConnectorID.String()
connectorID = &s