From bfd76805e87383794e462bd90928201791124bcd Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Thu, 16 Oct 2025 10:30:27 +0200 Subject: [PATCH] Revert "chore(gallery agent): try fixing linting errors" This reverts commit 561aa5e4439d47c87beca59f9c00453d18a5bda6. --- .github/gallery-agent/gallery.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/gallery-agent/gallery.go b/.github/gallery-agent/gallery.go index de75e73bc..8788fbf91 100644 --- a/.github/gallery-agent/gallery.go +++ b/.github/gallery-agent/gallery.go @@ -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")