Skip to content

Commit f8b5f28

Browse files
committed
remove _ because 2 return value range's first return value is index
1 parent d17eb75 commit f8b5f28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/scaffold/input/input.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ func (pf *ProjectFile) ResourceGroups() []string {
183183
}
184184

185185
groups := []string{}
186-
for g, _ := range groupSet {
186+
for g := range groupSet {
187187
groups = append(groups, g)
188188
}
189189
return groups

0 commit comments

Comments
 (0)