From 5469f017bc19fb5d0abcfd7c02d33a775bb39419 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sat, 24 Jan 2026 00:51:36 +0000 Subject: [PATCH] style: format code with Go fmt and Gofumpt This commit fixes the style issues introduced in cddfd5f according to the output from Go fmt and Gofumpt. Details: https://github.com/gogs/gogs/pull/8105 --- internal/database/issue_label.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/database/issue_label.go b/internal/database/issue_label.go index 187bfafef..5ecb8ce09 100644 --- a/internal/database/issue_label.go +++ b/internal/database/issue_label.go @@ -52,7 +52,7 @@ func GetLabelTemplateFile(name string) ([][2]string, error) { // Label represents a label of repository for issues. type Label struct { ID int64 - RepoID int64 `gorm:"index"` + RepoID int64 `gorm:"index"` Name string Color string `gorm:"type:varchar(7)"` NumIssues int