Fix wsl lint in SCIM export string dedupe

Add required blank line before append in
uniqueNonEmptyStrings.

Signed-off-by: Cursor Agent <cursoragent@cursor.com>

Co-authored-by: Bryan FRIMIN <bryan@frimin.fr>
This commit is contained in:
Cursor Agent
2026-07-29 21:58:29 +00:00
parent 6906e0ff5b
commit 45a7a428bf

View File

@@ -353,6 +353,7 @@ func uniqueNonEmptyStrings(values []string) []string {
}
seen[key] = struct{}{}
out = append(out, value)
}