Revert "chore(gallery agent): try fixing linting errors"

This reverts commit 561aa5e443.
This commit is contained in:
Ettore Di Giacinto
2025-10-16 10:30:27 +02:00
parent 561aa5e443
commit bfd76805e8

View File

@@ -51,9 +51,8 @@ func generateYAMLEntry(model ProcessedModel, familyAnchor string) string {
// Empty line - don't add spaces
formattedLines = append(formattedLines, "")
} else {
// Non-empty line - add proper indentation for literal block scalar
// The content should be indented 2 spaces from the description: key
formattedLines = append(formattedLines, " "+line)
// Non-empty line - add proper indentation
formattedLines = append(formattedLines, " "+line)
}
}
formattedDescription := strings.Join(formattedLines, "\n")